Home
last modified time | relevance | path

Searched refs:BestOf2NearestMatcher (Results 1 – 6 of 6) sorted by relevance

/external/opencv3/modules/stitching/perf/
Dperf_stich.cpp41 ? makePtr<detail::BestOf2NearestMatcher>(false, ORB_MATCH_CONFIDENCE) in PERF_TEST_P()
42 : makePtr<detail::BestOf2NearestMatcher>(false, SURF_MATCH_CONFIDENCE); in PERF_TEST_P()
78 ? makePtr<detail::BestOf2NearestMatcher>(false, ORB_MATCH_CONFIDENCE) in PERF_TEST_P()
79 : makePtr<detail::BestOf2NearestMatcher>(false, SURF_MATCH_CONFIDENCE); in PERF_TEST_P()
117 matcher = makePtr<detail::BestOf2NearestMatcher>(false, SURF_MATCH_CONFIDENCE); in PERF_TEST_P()
122 matcher = makePtr<detail::BestOf2NearestMatcher>(false, ORB_MATCH_CONFIDENCE); in PERF_TEST_P()
172 matcher = makePtr<detail::BestOf2NearestMatcher>(false, SURF_MATCH_CONFIDENCE);
177 matcher = makePtr<detail::BestOf2NearestMatcher>(false, ORB_MATCH_CONFIDENCE);
/external/opencv3/modules/stitching/perf/opencl/
Dperf_stitch.cpp43 ? makePtr<detail::BestOf2NearestMatcher>(false, ORB_MATCH_CONFIDENCE) in OCL_PERF_TEST_P()
44 : makePtr<detail::BestOf2NearestMatcher>(false, SURF_MATCH_CONFIDENCE); in OCL_PERF_TEST_P()
80 ? makePtr<detail::BestOf2NearestMatcher>(false, ORB_MATCH_CONFIDENCE) in OCL_PERF_TEST_P()
81 : makePtr<detail::BestOf2NearestMatcher>(false, SURF_MATCH_CONFIDENCE); in OCL_PERF_TEST_P()
122 ? makePtr<detail::BestOf2NearestMatcher>(false, ORB_MATCH_CONFIDENCE) in OCL_PERF_TEST_P()
123 : makePtr<detail::BestOf2NearestMatcher>(false, SURF_MATCH_CONFIDENCE); in OCL_PERF_TEST_P()
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dmatchers.hpp231 class CV_EXPORTS BestOf2NearestMatcher : public FeaturesMatcher class
243BestOf2NearestMatcher(bool try_use_gpu = false, float match_conf = 0.3f, int num_matches_thresh1 =…
256 class CV_EXPORTS BestOf2NearestRangeMatcher : public BestOf2NearestMatcher
/external/opencv3/modules/stitching/src/
Dmatchers.cpp556 BestOf2NearestMatcher::BestOf2NearestMatcher(bool try_use_gpu, float match_conf, int num_matches_th… in BestOf2NearestMatcher() function in cv::detail::BestOf2NearestMatcher
577 void BestOf2NearestMatcher::match(const ImageFeatures &features1, const ImageFeatures &features2, in match()
655 void BestOf2NearestMatcher::collectGarbage() in collectGarbage()
661 …at match_conf, int num_matches_thresh1, int num_matches_thresh2): BestOf2NearestMatcher(try_use_gp… in BestOf2NearestRangeMatcher()
Dstitcher.cpp56 stitcher.setFeaturesMatcher(makePtr<detail::BestOf2NearestMatcher>(try_use_gpu)); in createDefault()
544 stitcher->setFeaturesMatcher(makePtr<detail::BestOf2NearestMatcher>(try_use_gpu)); in createStitcher()
/external/opencv3/samples/cpp/
Dstitching_detailed.cpp463 BestOf2NearestMatcher matcher(try_cuda, match_conf); in main()