HomeSort by relevance Sort by last modified time
    Searched full:featuresfinder (Results 1 - 7 of 7) sorted by null

  /external/opencv3/modules/stitching/perf/opencl/
perf_stitch.cpp 38 Ptr<detail::FeaturesFinder> featuresFinder = GetParam() == "orb"
39 ? Ptr<detail::FeaturesFinder>(new detail::OrbFeaturesFinder())
40 : Ptr<detail::FeaturesFinder>(new detail::SurfFeaturesFinder());
51 stitcher.setFeaturesFinder(featuresFinder);
75 Ptr<detail::FeaturesFinder> featuresFinder = GetParam() == "orb"
76 ? Ptr<detail::FeaturesFinder>(new detail::OrbFeaturesFinder())
77 : Ptr<detail::FeaturesFinder>(new detail::SurfFeaturesFinder());
88 stitcher.setFeaturesFinder(featuresFinder);
    [all...]
  /external/opencv3/modules/stitching/perf/
perf_stich.cpp 36 Ptr<detail::FeaturesFinder> featuresFinder = GetParam() == "orb"
37 ? Ptr<detail::FeaturesFinder>(new detail::OrbFeaturesFinder())
38 : Ptr<detail::FeaturesFinder>(new detail::SurfFeaturesFinder());
49 stitcher.setFeaturesFinder(featuresFinder);
73 Ptr<detail::FeaturesFinder> featuresFinder = GetParam() == "orb"
74 ? Ptr<detail::FeaturesFinder>(new detail::OrbFeaturesFinder())
75 : Ptr<detail::FeaturesFinder>(new detail::SurfFeaturesFinder());
86 stitcher.setFeaturesFinder(featuresFinder);
    [all...]
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
matchers.hpp 71 class CV_EXPORTS FeaturesFinder
74 virtual ~FeaturesFinder() {}
91 detail::FeaturesFinder::operator()_ work.
102 @sa detail::FeaturesFinder, SURF
104 class CV_EXPORTS SurfFeaturesFinder : public FeaturesFinder
120 @sa detail::FeaturesFinder, ORB
122 class CV_EXPORTS OrbFeaturesFinder : public FeaturesFinder
136 class CV_EXPORTS SurfFeaturesFinderGpu : public FeaturesFinder
  /external/opencv3/modules/stitching/include/opencv2/
stitching.hpp 134 Ptr<detail::FeaturesFinder> featuresFinder() { return features_finder_; }
135 const Ptr<detail::FeaturesFinder> featuresFinder() const { return features_finder_; }
136 void setFeaturesFinder(Ptr<detail::FeaturesFinder> features_finder)
226 Ptr<detail::FeaturesFinder> features_finder_;
  /external/opencv3/modules/stitching/test/
test_matchers.cpp 52 Ptr<detail::FeaturesFinder> finder = makePtr<detail::SurfFeaturesFinder>();
  /external/opencv3/modules/stitching/src/
matchers.cpp 275 void FeaturesFinder::operator ()(InputArray image, ImageFeatures &features)
282 void FeaturesFinder::operator ()(InputArray image, ImageFeatures &features, const std::vector<Rect> &rois)
  /external/opencv3/samples/cpp/
stitching_detailed.cpp 384 Ptr<FeaturesFinder> finder;

Completed in 73 milliseconds