/external/opencv3/modules/java/src/ |
D | features2d+FeatureDetector.java | 16 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/ |
D | ScalaCorrespondenceMatchingDemo.scala | 6 import org.opencv.features2d.FeatureDetector 25 val detector = FeatureDetector.create(FeatureDetector.SURF)
|
/external/opencv3/modules/features2d/misc/java/test/ |
D | FASTFeatureDetectorTest.java | 11 import org.opencv.features2d.FeatureDetector; 19 FeatureDetector detector; 38 detector = FeatureDetector.create(FeatureDetector.FAST); in setUp()
|
D | STARFeatureDetectorTest.java | 11 import org.opencv.features2d.FeatureDetector; 19 FeatureDetector detector; 47 detector = FeatureDetector.create(FeatureDetector.STAR); in setUp()
|
D | Features2dTest.java | 18 import org.opencv.features2d.FeatureDetector; 84 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF); in testPTOD()
|
D | SURFFeatureDetectorTest.java | 15 import org.opencv.features2d.FeatureDetector; 23 FeatureDetector detector; 57 detector = FeatureDetector.create(FeatureDetector.SURF); in setUp()
|
D | BruteForceHammingLUTDescriptorMatcherTest.java | 16 import org.opencv.features2d.FeatureDetector; 49 FeatureDetector detector = FeatureDetector.create(FeatureDetector.FAST);
|
D | BruteForceL1DescriptorMatcherTest.java | 16 import org.opencv.features2d.FeatureDetector; 41 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF);
|
D | BruteForceHammingDescriptorMatcherTest.java | 17 import org.opencv.features2d.FeatureDetector; 50 FeatureDetector detector = FeatureDetector.create(FeatureDetector.FAST);
|
D | BruteForceSL2DescriptorMatcherTest.java | 16 import org.opencv.features2d.FeatureDetector; 47 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF);
|
D | FlannBasedDescriptorMatcherTest.java | 17 import org.opencv.features2d.FeatureDetector; 116 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF);
|
D | BruteForceDescriptorMatcherTest.java | 17 import org.opencv.features2d.FeatureDetector; 42 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF);
|
/external/opencv3/modules/features2d/test/ |
D | test_rotation_and_scale_invariance.cpp | 192 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;
|
D | test_keypoints.cpp | 59 CV_FeatureDetectorKeypointsTest(const Ptr<FeatureDetector>& _detector) : in CV_FeatureDetectorKeypointsTest() 116 Ptr<FeatureDetector> detector;
|
D | test_detectors_regression.cpp | 59 CV_FeatureDetectorTest( const string& _name, const Ptr<FeatureDetector>& _fdetector ) : in CV_FeatureDetectorTest() 72 Ptr<FeatureDetector> fdetector;
|
D | test_orb.cpp | 50 Ptr<FeatureDetector> fd = ORB::create(10000, 1.2f, 8, 31, 0, 2, ORB::HARRIS_SCORE, 31, 20); in TEST()
|
D | test_brisk.cpp | 75 Ptr<FeatureDetector> detector = BRISK::create(); in run()
|
D | test_descriptors_regression.cpp | 104 … Distance d = Distance(), Ptr<FeatureDetector> _detector = Ptr<FeatureDetector>()): in CV_DescriptorExtractorTest() 303 Ptr<FeatureDetector> detector;
|
/external/opencv3/modules/videostab/include/opencv2/videostab/ |
D | global_motion.hpp | 229 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/ |
D | RobustMatcher.h | 32 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/ |
D | features2d_manual.hpp | 15 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/ |
D | jni_part.cpp | 19 Ptr<FeatureDetector> detector = FastFeatureDetector::create(50); in Java_org_opencv_samples_tutorial2_Tutorial2Activity_FindFeatures()
|
/external/opencv3/modules/features2d/perf/opencl/ |
D | perf_fast.cpp | 35 Ptr<FeatureDetector> fd = FastFeatureDetector::create(20, true, type); in OCL_PERF_TEST_P()
|
/external/opencv3/modules/features2d/perf/ |
D | perf_fast.cpp | 33 Ptr<FeatureDetector> fd = FastFeatureDetector::create(20, true, type); in PERF_TEST_P()
|
D | perf_agast.cpp | 35 Ptr<FeatureDetector> fd = AgastFeatureDetector::create(70, true, type); in PERF_TEST_P()
|