Find similar images fast
Hi all, I have a dataset of 200,000 images and I need to build a fast CBIR system. I came up with OpenCV, but I am totally newbie to the argument.
From what I understand I could create a FLANN index of SURF (or BRISK?) features, and then perform a KNN search over it.
I didn't find any step-by-step tutorial or example on the topic, so I really don't know where to start.
Could you help me?
Thanks!
Ist the comparison a 1:1 comparison or are there any "transformations" between your images such as:
... or a combination of these transforms? If there are affine or perspective transforms, then feature matching is your friend. If not, try to use a method like cross-correlation, template matching etc.
Thanks for replying. I don't know...as I told I am a totally newbie to OpenCV. All that I know is that I need a CBIR fast retrieval system with a dataset of 200,000 images. I would need a step- by- step tutorial.
could you describe a bit, what 'CBIR' means exactly to you here ?
do you just need 'some similarity score' or have it sorted into one ore more 'categories' ? (mountain,pet,tool)
Also, can you upload some example images?