I am trying to find different options in using the OpenCV feature matching.
I am using version 2.4.4.
I heard that there is a "templated" version for the brute force matching - and that i may be able to get different matching methods...
So far this is what i found - but i can't see how to use the templated version, other than passing the matching method in the constructor. Is that how it works ? are there any alternatives that i can explore ?
cv::BFMatcher matcher(use_hamming ? cv::NORM_HAMMING : cv::NORM_L2);
matcher.knnMatch(descriptors2, descriptors1, matches, 2);
Thank you