Ask Your Question

Revision history [back]

Hi,

I updated the log message in the OpenCV repository. You can adjust the match confidence threshold using the following code (here the default value 0.3 is set):

Ptr<detail::FeaturesMatcher> matcher = new detail::BestOf2NearestMatcher(

false/=try_use_gpu/, 0.3f/=match_conf/) stitcher.setFeaturesMatcher();

Hi,

I updated the log message in the OpenCV repository. You can adjust the match confidence threshold using the following code (here the default value 0.3 is set):

Ptr<detail::FeaturesMatcher> matcher = new detail::BestOf2NearestMatcher(
stitcher.setFeaturesMatcher(new detail::BestOf2NearestMatcher(false/*=try_use_gpu*/, 0.3f/*=match_conf*/));

false/=try_use_gpu/, 0.3f/=match_conf/) stitcher.setFeaturesMatcher();

Hi,

I updated the log message in the OpenCV repository. You can adjust the match confidence threshold using the following code (here the default value 0.3 is set):

stitcher.setFeaturesMatcher(new detail::BestOf2NearestMatcher(false/*=try_use_gpu*/, detail::BestOf2NearestMatcher(false, 0.3f/*=match_conf*/));