How to calculate Similarity Rate of 2 feature matching.

asked 2015-12-26 07:45:41 -0600

RR14 gravatar image

Hi,

I am matching 2 images by their features in openCV ( I've used SURF specially but I am going to compare all other methods too. Depending on match rate) I want to get similarity rate of 2 images e.g A image %85 similar to B image. how can I do it?

P.S: I am looking for good opencv svm tutorial since it is lack of documentation.

edit retag flag offensive close merge delete

Comments

What you could try:

  • Match features from image A to image B
  • Eliminate false matches using the (Lowe) ratio test
  • Calculate the ratio between the "true" matches and the number of pairs of features

Also, you can see: measure similarity between two images

For OpenCV SVM tutorial, you have:

Eduardo gravatar imageEduardo ( 2015-12-26 09:52:53 -0600 )edit