Searched refs:try_use_gpu (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/samples/cpp/ |
D | stitching.cpp | 52 bool try_use_gpu = false; variable 65 Stitcher stitcher = Stitcher::createDefault(try_use_gpu); in main() 110 try_use_gpu = false; in parseCmdArgs() 112 try_use_gpu = true; in parseCmdArgs()
|
/external/opencv3/modules/stitching/src/ |
D | stitcher.cpp | 47 Stitcher Stitcher::createDefault(bool try_use_gpu) in createDefault() argument 56 stitcher.setFeaturesMatcher(makePtr<detail::BestOf2NearestMatcher>(try_use_gpu)); in createDefault() 60 if (try_use_gpu && cuda::getCudaEnabledDeviceCount() > 0) in createDefault() 83 stitcher.setBlender(makePtr<detail::MultiBandBlender>(try_use_gpu)); in createDefault() 535 Ptr<Stitcher> createStitcher(bool try_use_gpu) in createStitcher() argument 544 stitcher->setFeaturesMatcher(makePtr<detail::BestOf2NearestMatcher>(try_use_gpu)); in createStitcher() 548 if (try_use_gpu && cuda::getCudaEnabledDeviceCount() > 0) in createStitcher() 571 stitcher->setBlender(makePtr<detail::MultiBandBlender>(try_use_gpu)); in createStitcher()
|
D | matchers.cpp | 556 BestOf2NearestMatcher::BestOf2NearestMatcher(bool try_use_gpu, float match_conf, int num_matches_th… in BestOf2NearestMatcher() argument 558 (void)try_use_gpu; in BestOf2NearestMatcher() 561 if (try_use_gpu && getCudaEnabledDeviceCount() > 0) in BestOf2NearestMatcher() 661 … range_width, bool try_use_gpu, float match_conf, int num_matches_thresh1, int num_matches_thresh2… 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/modules/stitching/include/opencv2/ |
D | stitching.hpp | 114 static Stitcher createDefault(bool try_use_gpu = false); 251 CV_EXPORTS_W Ptr<Stitcher> createStitcher(bool try_use_gpu = false);
|