1 | initial version |
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();
2 | No.2 Revision |
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();
3 | No.3 Revision |
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*/));