BestOf2NearestMatcher  243 modules/stitching/include/opencv2/stitching/detail/matchers.hpp     BestOf2NearestMatcher(bool try_use_gpu = false, float match_conf = 0.3f, int num_matches_thresh1 = 6,
BestOf2NearestMatcher  256 modules/stitching/include/opencv2/stitching/detail/matchers.hpp class CV_EXPORTS BestOf2NearestRangeMatcher : public BestOf2NearestMatcher
BestOf2NearestMatcher   43 modules/stitching/perf/opencl/perf_stitch.cpp             ? makePtr<detail::BestOf2NearestMatcher>(false, ORB_MATCH_CONFIDENCE)
BestOf2NearestMatcher   44 modules/stitching/perf/opencl/perf_stitch.cpp             : makePtr<detail::BestOf2NearestMatcher>(false, SURF_MATCH_CONFIDENCE);
BestOf2NearestMatcher   80 modules/stitching/perf/opencl/perf_stitch.cpp             ? makePtr<detail::BestOf2NearestMatcher>(false, ORB_MATCH_CONFIDENCE)
BestOf2NearestMatcher   81 modules/stitching/perf/opencl/perf_stitch.cpp             : makePtr<detail::BestOf2NearestMatcher>(false, SURF_MATCH_CONFIDENCE);
BestOf2NearestMatcher  122 modules/stitching/perf/opencl/perf_stitch.cpp             ? makePtr<detail::BestOf2NearestMatcher>(false, ORB_MATCH_CONFIDENCE)
BestOf2NearestMatcher  123 modules/stitching/perf/opencl/perf_stitch.cpp             : makePtr<detail::BestOf2NearestMatcher>(false, SURF_MATCH_CONFIDENCE);
BestOf2NearestMatcher   41 modules/stitching/perf/perf_stich.cpp             ? makePtr<detail::BestOf2NearestMatcher>(false, ORB_MATCH_CONFIDENCE)
BestOf2NearestMatcher   42 modules/stitching/perf/perf_stich.cpp             : makePtr<detail::BestOf2NearestMatcher>(false, SURF_MATCH_CONFIDENCE);
BestOf2NearestMatcher   78 modules/stitching/perf/perf_stich.cpp             ? makePtr<detail::BestOf2NearestMatcher>(false, ORB_MATCH_CONFIDENCE)
BestOf2NearestMatcher   79 modules/stitching/perf/perf_stich.cpp             : makePtr<detail::BestOf2NearestMatcher>(false, SURF_MATCH_CONFIDENCE);
BestOf2NearestMatcher  117 modules/stitching/perf/perf_stich.cpp         matcher = makePtr<detail::BestOf2NearestMatcher>(false, SURF_MATCH_CONFIDENCE);
BestOf2NearestMatcher  122 modules/stitching/perf/perf_stich.cpp         matcher = makePtr<detail::BestOf2NearestMatcher>(false, ORB_MATCH_CONFIDENCE);
BestOf2NearestMatcher  172 modules/stitching/perf/perf_stich.cpp         matcher = makePtr<detail::BestOf2NearestMatcher>(false, SURF_MATCH_CONFIDENCE);
BestOf2NearestMatcher  177 modules/stitching/perf/perf_stich.cpp         matcher = makePtr<detail::BestOf2NearestMatcher>(false, ORB_MATCH_CONFIDENCE);
BestOf2NearestMatcher  556 modules/stitching/src/matchers.cpp BestOf2NearestMatcher::BestOf2NearestMatcher(bool try_use_gpu, float match_conf, int num_matches_thresh1, int num_matches_thresh2)
BestOf2NearestMatcher  577 modules/stitching/src/matchers.cpp void BestOf2NearestMatcher::match(const ImageFeatures &features1, const ImageFeatures &features2,
BestOf2NearestMatcher  655 modules/stitching/src/matchers.cpp void BestOf2NearestMatcher::collectGarbage()
BestOf2NearestMatcher  661 modules/stitching/src/matchers.cpp BestOf2NearestRangeMatcher::BestOf2NearestRangeMatcher(int range_width, bool try_use_gpu, float match_conf, int num_matches_thresh1, int num_matches_thresh2): BestOf2NearestMatcher(try_use_gpu, match_conf, num_matches_thresh1, num_matches_thresh2)
BestOf2NearestMatcher   56 modules/stitching/src/stitcher.cpp     stitcher.setFeaturesMatcher(makePtr<detail::BestOf2NearestMatcher>(try_use_gpu));
BestOf2NearestMatcher  544 modules/stitching/src/stitcher.cpp     stitcher->setFeaturesMatcher(makePtr<detail::BestOf2NearestMatcher>(try_use_gpu));
BestOf2NearestMatcher  463 samples/cpp/stitching_detailed.cpp         BestOf2NearestMatcher matcher(try_cuda, match_conf);