Home
last modified time | relevance | path

Searched refs:FeatureDetector (Results 1 – 25 of 34) sorted by relevance

12

/external/opencv3/modules/java/src/
Dfeatures2d+FeatureDetector.java16 public class FeatureDetector { class
19 protected FeatureDetector(long addr) { nativeObj = addr; } in FeatureDetector() method in FeatureDetector
149 public static FeatureDetector create(int detectorType) in create()
152 FeatureDetector retVal = new FeatureDetector(create_0(detectorType)); in create()
/external/opencv3/samples/java/sbt/src/main/scala/
DScalaCorrespondenceMatchingDemo.scala6 import org.opencv.features2d.FeatureDetector
25 val detector = FeatureDetector.create(FeatureDetector.SURF)
/external/opencv3/modules/features2d/misc/java/test/
DFASTFeatureDetectorTest.java11 import org.opencv.features2d.FeatureDetector;
19 FeatureDetector detector;
38 detector = FeatureDetector.create(FeatureDetector.FAST); in setUp()
DSTARFeatureDetectorTest.java11 import org.opencv.features2d.FeatureDetector;
19 FeatureDetector detector;
47 detector = FeatureDetector.create(FeatureDetector.STAR); in setUp()
DFeatures2dTest.java18 import org.opencv.features2d.FeatureDetector;
84 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF); in testPTOD()
DSURFFeatureDetectorTest.java15 import org.opencv.features2d.FeatureDetector;
23 FeatureDetector detector;
57 detector = FeatureDetector.create(FeatureDetector.SURF); in setUp()
DBruteForceHammingLUTDescriptorMatcherTest.java16 import org.opencv.features2d.FeatureDetector;
49 FeatureDetector detector = FeatureDetector.create(FeatureDetector.FAST);
DBruteForceL1DescriptorMatcherTest.java16 import org.opencv.features2d.FeatureDetector;
41 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF);
DBruteForceHammingDescriptorMatcherTest.java17 import org.opencv.features2d.FeatureDetector;
50 FeatureDetector detector = FeatureDetector.create(FeatureDetector.FAST);
DBruteForceSL2DescriptorMatcherTest.java16 import org.opencv.features2d.FeatureDetector;
47 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF);
DFlannBasedDescriptorMatcherTest.java17 import org.opencv.features2d.FeatureDetector;
116 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF);
DBruteForceDescriptorMatcherTest.java17 import org.opencv.features2d.FeatureDetector;
42 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF);
/external/opencv3/modules/features2d/test/
Dtest_rotation_and_scale_invariance.cpp192 DetectorRotationInvarianceTest(const Ptr<FeatureDetector>& _featureDetector, in DetectorRotationInvarianceTest()
293 Ptr<FeatureDetector> featureDetector;
301 DescriptorRotationInvarianceTest(const Ptr<FeatureDetector>& _featureDetector, in DescriptorRotationInvarianceTest()
379 Ptr<FeatureDetector> featureDetector;
388 DetectorScaleInvarianceTest(const Ptr<FeatureDetector>& _featureDetector, in DetectorScaleInvarianceTest()
496 Ptr<FeatureDetector> featureDetector;
504 DescriptorScaleInvarianceTest(const Ptr<FeatureDetector>& _featureDetector, in DescriptorScaleInvarianceTest()
583 Ptr<FeatureDetector> featureDetector;
Dtest_keypoints.cpp59 CV_FeatureDetectorKeypointsTest(const Ptr<FeatureDetector>& _detector) : in CV_FeatureDetectorKeypointsTest()
116 Ptr<FeatureDetector> detector;
Dtest_detectors_regression.cpp59 CV_FeatureDetectorTest( const string& _name, const Ptr<FeatureDetector>& _fdetector ) : in CV_FeatureDetectorTest()
72 Ptr<FeatureDetector> fdetector;
Dtest_orb.cpp50 Ptr<FeatureDetector> fd = ORB::create(10000, 1.2f, 8, 31, 0, 2, ORB::HARRIS_SCORE, 31, 20); in TEST()
Dtest_brisk.cpp75 Ptr<FeatureDetector> detector = BRISK::create(); in run()
Dtest_descriptors_regression.cpp104 … Distance d = Distance(), Ptr<FeatureDetector> _detector = Ptr<FeatureDetector>()): in CV_DescriptorExtractorTest()
303 Ptr<FeatureDetector> detector;
/external/opencv3/modules/videostab/include/opencv2/videostab/
Dglobal_motion.hpp229 void setDetector(Ptr<FeatureDetector> val) { detector_ = val; } in setDetector()
230 Ptr<FeatureDetector> detector() const { return detector_; } in detector()
242 Ptr<FeatureDetector> detector_;
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
DRobustMatcher.h32 void setFeatureDetector(const cv::Ptr<cv::FeatureDetector>& detect) { detector_ = detect; } in setFeatureDetector()
72 cv::Ptr<cv::FeatureDetector> detector_;
/external/opencv3/modules/features2d/misc/java/src/cpp/
Dfeatures2d_manual.hpp15 class CV_EXPORTS_AS(FeatureDetector) javaFeatureDetector in CV_EXPORTS_AS() argument
111 Ptr<FeatureDetector> fd; in CV_EXPORTS_AS()
175 javaFeatureDetector(Ptr<FeatureDetector> _wrapped) : wrapped(_wrapped) in CV_EXPORTS_AS()
178 Ptr<FeatureDetector> wrapped; in CV_EXPORTS_AS()
/external/opencv3/samples/android/tutorial-2-mixedprocessing/jni/
Djni_part.cpp19 Ptr<FeatureDetector> detector = FastFeatureDetector::create(50); in Java_org_opencv_samples_tutorial2_Tutorial2Activity_FindFeatures()
/external/opencv3/modules/features2d/perf/opencl/
Dperf_fast.cpp35 Ptr<FeatureDetector> fd = FastFeatureDetector::create(20, true, type); in OCL_PERF_TEST_P()
/external/opencv3/modules/features2d/perf/
Dperf_fast.cpp33 Ptr<FeatureDetector> fd = FastFeatureDetector::create(20, true, type); in PERF_TEST_P()
Dperf_agast.cpp35 Ptr<FeatureDetector> fd = AgastFeatureDetector::create(70, true, type); in PERF_TEST_P()

12