MATLAB: Image Recognition Using SIFT

Computer Vision Toolboximage processingimage recognitionsift

I'm currently doing a face recognition project using SIFT. I have no problem by matching an image with a single image. But, problems come when I want to match an image with a database of image(descriptors). How can i import the database of images and perform matching by using SIFT? The code is here. Thanks in advance.

Best Answer

Put your call to match() in the middle of a for loop like is given in the FAQ: http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F The FAQ will show you how to "import the database of images" assuming that your database is just a collection of files in a folder, and not a true database like Oracle or something.
Related Question