Searched refs:match_conf (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/modules/stitching/src/ |
D | matchers.cpp | 120 CpuMatcher(float match_conf) : FeaturesMatcher(true), match_conf_(match_conf) {} in CpuMatcher() argument 131 GpuMatcher(float match_conf) : match_conf_(match_conf) {} in GpuMatcher() argument 556 BestOf2NearestMatcher::BestOf2NearestMatcher(bool try_use_gpu, float match_conf, int num_matches_th… in BestOf2NearestMatcher() argument 563 impl_ = makePtr<GpuMatcher>(match_conf); in BestOf2NearestMatcher() 568 impl_ = makePtr<CpuMatcher>(match_conf); in BestOf2NearestMatcher() 661 …ol try_use_gpu, float match_conf, int num_matches_thresh1, int num_matches_thresh2): BestOf2Neares… in BestOf2NearestRangeMatcher() argument
|
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
D | matchers.hpp | 243 …BestOf2NearestMatcher(bool try_use_gpu = false, float match_conf = 0.3f, int num_matches_thresh1 =… 259 … BestOf2NearestRangeMatcher(int range_width = 5, bool try_use_gpu = false, float match_conf = 0.3f,
|
/external/opencv3/samples/cpp/ |
D | stitching_detailed.cpp | 144 float match_conf = 0.3f; variable 209 match_conf = 0.3f; in parseCmdArgs() 214 match_conf = static_cast<float>(atof(argv[i + 1])); in parseCmdArgs() 463 BestOf2NearestMatcher matcher(try_cuda, match_conf); in main() 469 BestOf2NearestRangeMatcher matcher(timelapse_range, try_cuda, match_conf); in main()
|