/external/opencv3/modules/features2d/test/ |
test_rotation_and_scale_invariance.cpp | 192 DetectorRotationInvarianceTest(const Ptr<FeatureDetector>& _featureDetector, 195 featureDetector(_featureDetector), 199 CV_Assert(featureDetector); 218 featureDetector->detect(image0, keypoints0); 228 featureDetector->detect(image1, keypoints1, mask1); 249 CV_Error(Error::StsBadArg, "Given FeatureDetector is not rotation invariant, it can not be tested here.\n"); 293 Ptr<FeatureDetector> featureDetector; 301 DescriptorRotationInvarianceTest(const Ptr<FeatureDetector>& _featureDetector, 305 featureDetector(_featureDetector) [all...] |
test_keypoints.cpp | 59 CV_FeatureDetectorKeypointsTest(const Ptr<FeatureDetector>& _detector) : 116 Ptr<FeatureDetector> detector;
|
test_brisk.cpp | 75 Ptr<FeatureDetector> detector = BRISK::create();
|
test_orb.cpp | 50 Ptr<FeatureDetector> fd = ORB::create(10000, 1.2f, 8, 31, 0, 2, ORB::HARRIS_SCORE, 31, 20);
|
test_descriptors_regression.cpp | 104 Distance d = Distance(), Ptr<FeatureDetector> _detector = Ptr<FeatureDetector>()): 303 Ptr<FeatureDetector> detector;
|
/external/opencv3/samples/java/sbt/src/main/scala/ |
ScalaCorrespondenceMatchingDemo.scala | 6 import org.opencv.features2d.FeatureDetector 25 val detector = FeatureDetector.create(FeatureDetector.SURF)
|
/external/opencv3/modules/features2d/misc/java/test/ |
FASTFeatureDetectorTest.java | 11 import org.opencv.features2d.FeatureDetector; 19 FeatureDetector detector; 38 detector = FeatureDetector.create(FeatureDetector.FAST);
|
Features2dTest.java | 18 import org.opencv.features2d.FeatureDetector; 84 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF);
|
STARFeatureDetectorTest.java | 11 import org.opencv.features2d.FeatureDetector; 19 FeatureDetector detector; 47 detector = FeatureDetector.create(FeatureDetector.STAR);
|
BruteForceHammingDescriptorMatcherTest.java | 17 import org.opencv.features2d.FeatureDetector; 50 FeatureDetector detector = FeatureDetector.create(FeatureDetector.FAST);
|
BruteForceHammingLUTDescriptorMatcherTest.java | 16 import org.opencv.features2d.FeatureDetector; 49 FeatureDetector detector = FeatureDetector.create(FeatureDetector.FAST);
|
BruteForceL1DescriptorMatcherTest.java | 16 import org.opencv.features2d.FeatureDetector; 41 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF);
|
BruteForceSL2DescriptorMatcherTest.java | 16 import org.opencv.features2d.FeatureDetector; 47 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF);
|
SURFFeatureDetectorTest.java | 15 import org.opencv.features2d.FeatureDetector; 23 FeatureDetector detector; 57 detector = FeatureDetector.create(FeatureDetector.SURF);
|
BruteForceDescriptorMatcherTest.java | 17 import org.opencv.features2d.FeatureDetector; 42 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF);
|
FlannBasedDescriptorMatcherTest.java | 17 import org.opencv.features2d.FeatureDetector; 116 FeatureDetector detector = FeatureDetector.create(FeatureDetector.SURF);
|
/external/opencv3/modules/features2d/perf/opencl/ |
perf_fast.cpp | 35 Ptr<FeatureDetector> fd = FastFeatureDetector::create(20, true, type);
|
/external/opencv3/modules/features2d/perf/ |
perf_fast.cpp | 33 Ptr<FeatureDetector> fd = FastFeatureDetector::create(20, true, type);
|
perf_agast.cpp | 35 Ptr<FeatureDetector> fd = AgastFeatureDetector::create(70, true, type);
|
/external/opencv3/samples/android/tutorial-2-mixedprocessing/jni/ |
jni_part.cpp | 19 Ptr<FeatureDetector> detector = FastFeatureDetector::create(50);
|
/external/opencv3/modules/java/src/ |
features2d+FeatureDetector.java | 16 public class FeatureDetector { 19 protected FeatureDetector(long addr) { nativeObj = addr; } 149 public static FeatureDetector create(int detectorType) 152 FeatureDetector retVal = new FeatureDetector(create_0(detectorType));
|
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/ |
RobustMatcher.h | 32 void setFeatureDetector(const cv::Ptr<cv::FeatureDetector>& detect) { detector_ = detect; } 72 cv::Ptr<cv::FeatureDetector> detector_;
|
/external/opencv3/doc/tutorials/features2d/feature_detection/ |
feature_detection.markdown | 9 - Use the @ref cv::FeatureDetector interface in order to find interest points. Specifically:
|
/external/opencv3/modules/features2d/misc/java/src/cpp/ |
features2d_manual.hpp | 15 class CV_EXPORTS_AS(FeatureDetector) javaFeatureDetector 111 Ptr<FeatureDetector> fd; 175 javaFeatureDetector(Ptr<FeatureDetector> _wrapped) : wrapped(_wrapped) 178 Ptr<FeatureDetector> wrapped;
|
/external/opencv3/modules/videostab/include/opencv2/videostab/ |
global_motion.hpp | 229 void setDetector(Ptr<FeatureDetector> val) { detector_ = val; } 230 Ptr<FeatureDetector> detector() const { return detector_; } 242 Ptr<FeatureDetector> detector_;
|