HomeSort by relevance Sort by last modified time
    Searched refs:match_conf (Results 1 - 3 of 3) sorted by null

  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
matchers.hpp 227 ratio between descriptor distances is greater than the threshold match_conf
237 @param match_conf Match distances ration threshold
243 BestOf2NearestMatcher(bool try_use_gpu = false, float match_conf = 0.3f, int num_matches_thresh1 = 6,
259 BestOf2NearestRangeMatcher(int range_width = 5, bool try_use_gpu = false, float match_conf = 0.3f,
  /external/opencv3/modules/stitching/src/
matchers.cpp 120 CpuMatcher(float match_conf) : FeaturesMatcher(true), match_conf_(match_conf) {}
131 GpuMatcher(float match_conf) : match_conf_(match_conf) {}
556 BestOf2NearestMatcher::BestOf2NearestMatcher(bool try_use_gpu, float match_conf, int num_matches_thresh1, int num_matches_thresh2)
563 impl_ = makePtr<GpuMatcher>(match_conf);
568 impl_ = makePtr<CpuMatcher>(match_conf);
661 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)
  /external/opencv3/samples/cpp/
stitching_detailed.cpp 84 " --match_conf <float>\n"
144 float match_conf = 0.3f; variable
209 match_conf = 0.3f;
212 else if (string(argv[i]) == "--match_conf")
214 match_conf = static_cast<float>(atof(argv[i + 1]));
463 BestOf2NearestMatcher matcher(try_cuda, match_conf);
469 BestOf2NearestRangeMatcher matcher(timelapse_range, try_cuda, match_conf);

Completed in 63 milliseconds