Home
last modified time | relevance | path

Searched refs:FeaturesFinder (Results 1 – 7 of 7) sorted by relevance

/external/opencv3/modules/stitching/perf/opencl/
Dperf_stitch.cpp38 Ptr<detail::FeaturesFinder> featuresFinder = GetParam() == "orb" in OCL_PERF_TEST_P()
39 ? Ptr<detail::FeaturesFinder>(new detail::OrbFeaturesFinder()) in OCL_PERF_TEST_P()
40 : Ptr<detail::FeaturesFinder>(new detail::SurfFeaturesFinder()); in OCL_PERF_TEST_P()
75 Ptr<detail::FeaturesFinder> featuresFinder = GetParam() == "orb" in OCL_PERF_TEST_P()
76 ? Ptr<detail::FeaturesFinder>(new detail::OrbFeaturesFinder()) in OCL_PERF_TEST_P()
77 : Ptr<detail::FeaturesFinder>(new detail::SurfFeaturesFinder()); in OCL_PERF_TEST_P()
117 Ptr<detail::FeaturesFinder> featuresFinder = GetParam() == "orb" in OCL_PERF_TEST_P()
118 ? Ptr<detail::FeaturesFinder>(new detail::OrbFeaturesFinder()) in OCL_PERF_TEST_P()
119 : Ptr<detail::FeaturesFinder>(new detail::SurfFeaturesFinder()); in OCL_PERF_TEST_P()
/external/opencv3/modules/stitching/perf/
Dperf_stich.cpp36 Ptr<detail::FeaturesFinder> featuresFinder = GetParam() == "orb" in PERF_TEST_P()
37 ? Ptr<detail::FeaturesFinder>(new detail::OrbFeaturesFinder()) in PERF_TEST_P()
38 : Ptr<detail::FeaturesFinder>(new detail::SurfFeaturesFinder()); in PERF_TEST_P()
73 Ptr<detail::FeaturesFinder> featuresFinder = GetParam() == "orb" in PERF_TEST_P()
74 ? Ptr<detail::FeaturesFinder>(new detail::OrbFeaturesFinder()) in PERF_TEST_P()
75 : Ptr<detail::FeaturesFinder>(new detail::SurfFeaturesFinder()); in PERF_TEST_P()
112 Ptr<detail::FeaturesFinder> finder; in PERF_TEST_P()
165 Ptr<detail::FeaturesFinder> finder;
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dmatchers.hpp71 class CV_EXPORTS FeaturesFinder class
74 virtual ~FeaturesFinder() {} in ~FeaturesFinder()
104 class CV_EXPORTS SurfFeaturesFinder : public FeaturesFinder
122 class CV_EXPORTS OrbFeaturesFinder : public FeaturesFinder
136 class CV_EXPORTS SurfFeaturesFinderGpu : public FeaturesFinder
/external/opencv3/modules/stitching/include/opencv2/
Dstitching.hpp134 Ptr<detail::FeaturesFinder> featuresFinder() { return features_finder_; } in featuresFinder()
135 const Ptr<detail::FeaturesFinder> featuresFinder() const { return features_finder_; } in featuresFinder()
136 void setFeaturesFinder(Ptr<detail::FeaturesFinder> features_finder) in setFeaturesFinder()
226 Ptr<detail::FeaturesFinder> features_finder_;
/external/opencv3/modules/stitching/test/
Dtest_matchers.cpp52 Ptr<detail::FeaturesFinder> finder = makePtr<detail::SurfFeaturesFinder>(); in TEST()
/external/opencv3/modules/stitching/src/
Dmatchers.cpp275 void FeaturesFinder::operator ()(InputArray image, ImageFeatures &features) in operator ()()
282 void FeaturesFinder::operator ()(InputArray image, ImageFeatures &features, const std::vector<Rect>… in operator ()()
/external/opencv3/samples/cpp/
Dstitching_detailed.cpp384 Ptr<FeaturesFinder> finder; in main()