I am trying to do some image matching using OpenCV and am using the cvMatchTemplate function.
I took a sample image and then cut part of it out as a template and then tried to match it.
When I do this, the cvMatchTemplate function finds the subimage correctly and gave it the best score. The problem is that the score is lower than I would have expected.
I am using the CV_TM_CCOEFF_NORMED method and the score that it calculated was: 0.281492
Shouldn't this be closer to 1.0 since it is an exact match?
Thanks!