Ask Your Question

Revision history [back]

BFMatcher and crossCheck

Hi,

When I use BFMatcher I can find in constructor option crossCheck

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<cv::BFMatcher>()!=NULL)
{
    descriptorMatcher.dynamicCast<cv::BFMatcher>()->?????? // crossChech
}

Thanks for your help

Opencv 3.0-dev VS 2013

BFMatcher and crossCheck

Hi,

When I use BFMatcher I can find in constructor option crossCheck

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<cv::BFMatcher>()!=NULL)
{
    descriptorMatcher.dynamicCast<cv::BFMatcher>()->?????? // crossChech
crossCheck = true
}

Thanks for your help

Opencv 3.0-dev VS 2013