I have these two images.
And...
I made them into graysclae images and then passed the two images to cvMatchImages
like so
Double someValue = cvMatchShapes(grayImage, grayImage2, CV_CONTOURS_MATCH_I2, 0);
System.out.println(someValue);
The value that was printed by sysout was 1.465496453484283. What is this value representing? How can i use it to match other images and also how can I reject those that do not?