Hi,
When I use BFMatcher I can find in [constructor option crossCheck](http://docs.opencv.org/master/d3/da1/classcv_1_1BFMatcher.html#abe0bb11749b30d97f60d6ade665617bd)
Now if I want to use new method cv::DescriptorMatcher::create("BruteForce-Hamming") Is it possible to fix crossCheck to true?
my program is
descriptorMatcher = cv::DescriptorMatcher::create("BruteForce-Hamming");
if (descriptorMatcher.dynamicCast()!=NULL)
{
descriptorMatcher.dynamicCast()->?????? // crossCheck = true
}
Thanks for your help
Opencv 3.0-dev VS 2013
↧