How do i store Images on database based on extracted features, then retrieve image based on image query?

2 views (last 30 days)
Dear Experiences..
  • i have 100 images in folder called (D:\images)..
  • i have extracted feature from every single image where the extracted features are represented as matrix (M x 128),
  • where M refer to feature matrix rows and 128 are feature extracted columns... for all images columns are fixed but rows are differs based on size of an image...
  • feature matrix are numeric matrix...
  • so, i need a way to store all images (100 images) in Database or such other structure content based on image features.. and when i need to retrieve an image .. its compare query image feature matrix to those in database then retrieve similar one... (i think here pairwise distance or such other metric must be used)...
so, i will thank any one can give me an advices or help me in this issue...
thanks..

Accepted Answer

Walter Roberson
Walter Roberson on 23 Jul 2017
"so, i need a way to store all images (100 images) in Database or such other structure content based on image features.."
Well, you could use containers.Map to use the features as an index to store values. However, since none of your actual images are likely to result in a feature vector that exactly matches, bit for bit, then this is not going to be useful.
In short, don't do that. Instead just store all of the feature vectors for the known images, and then when a probe image comes in, use pdist2 to compare its feature vector to all of the known ones to find the known image that is most like the probe image.
  6 Comments
ahmed obaid
ahmed obaid on 25 Jul 2017
Edited: ahmed obaid on 25 Jul 2017
Dear Walter (Experience) i'm sure your code is very smart and great.. may i'm not explain my project work issue clearly .. but i hope to help me for this..
Sir, i'm use SURF algorithm to extract local feature from every image .. where 128 vector length used.. according to the following code .. now every image has (M x 128) feature matrix.. i could not find a place to add SURF code in your program ... then how could query image is calculated against all others.. thanks
A=imread ('D:\images\7_6.jpg');
sample1 =rgb2gray(A);
queryPoints = detectSURFFeatures(sample1);
[queryFeatures, queryPoints] = extractFeatures(sample1, queryPoints,'SURFSize',128);
now we have query_image feature matrix (M x 128)... i need to find matches against all other images feature matrices and retrieve close ones..
how i can create this code in your mention code... with my best regards.
Walter Roberson
Walter Roberson on 25 Jul 2017
My code line
this_feature_vector = extract_features(this_file_name);
represents a call to a function that takes in a file name and returns a vector of values.
Glancing at detectSURFFeatures and extractFeatures, it looks to me as if the number of features returned can vary from image to image. The code I have written expects that the same number will be returned each time. It is difficult to define the "distance" between two feature vectors if the two have different sizes.

Sign in to comment.

More Answers (1)

Image Analyst
Image Analyst on 23 Jul 2017
You can save your (poorly-named) database variable "M" in a .mat file with save().
save(fullFileName, 'M');
You can retrieve M with load().
storedStructure = load(fullFileName); % Get everything fro mfile.
M = storedStructure.M; % Extract the "M" field from the structure.
You can compare your current image's features to M with functions such as find(), ismember(), ismembertol(), or the double equals operator "==", etc.
If you need an "official" database, like Oracle, Access, or something similar, then you might want to get the Database Toolbox.
  1 Comment
ahmed obaid
ahmed obaid on 24 Jul 2017
thanks, i think here use image name... and if some one change names of images in database could not find similar one... please.. i need a help to store one by one image feature to database.. where every image has M x 128 matrix... then for query one i compare its feature matrix to all feature matrices in database.. thanks

Sign in to comment.

Categories

Find more on Image Processing and Computer Vision in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!