Script to recognize similarity between images

0

Good Afternoon Personal, okay?

I'm starting my studies in Python set to OpenCV, and I want to perform the reading of images and display the degree of similarity between them.

Ex: I have a database with several images, I will give the script another image of another database, and it will have to look for the most similar image in the current database.

Is this possible?

I found some tips on some forums, however, most were comparing only 2 images already delivered to the script, and only returned True or False if it was similar, not its degree, or its image that is similar

    
asked by anonymous 12.09.2018 / 17:49

1 answer

1

Similar means how similar images are, that is image processing + pattern recognition, you are looking for features that are similar between two or more images. I suggest searching for such terms in google, you can use a SIFT + KNN, for example, to compare them.

In this question, it does this with SIFT, this algorithm you find in Python:

link

    
15.09.2018 / 00:18