/external/opencv3/modules/features2d/perf/opencl/ |
perf_orb.cpp | 25 Ptr<ORB> detector = ORB::create(1500, 1.3f, 1); 47 Ptr<ORB> detector = ORB::create(1500, 1.3f, 1); 77 Ptr<ORB> detector = ORB::create(1500, 1.3f, 1);
|
/external/opencv3/modules/features2d/perf/ |
perf_orb.cpp | 9 typedef perf::TestBaseWithParam<std::string> orb; typedef 15 PERF_TEST_P(orb, detect, testing::Values(ORB_IMAGES)) 25 Ptr<ORB> detector = ORB::create(1500, 1.3f, 1); 34 PERF_TEST_P(orb, extract, testing::Values(ORB_IMAGES)) 45 Ptr<ORB> detector = ORB::create(1500, 1.3f, 1); 57 PERF_TEST_P(orb, full, testing::Values(ORB_IMAGES)) 67 Ptr<ORB> detector = ORB::create(1500, 1.3f, 1) [all...] |
/external/opencv3/modules/features2d/test/ |
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 | 258 Ptr<ORB> fd = ORB::create(); 324 CV_DescriptorExtractorTest<Hamming> test( "descriptor-orb", 330 ORB::create() ); 357 Ptr<ORB> orb = ORB::create(); local 366 orb->detect(imgs, keypoints); 367 orb->compute(imgs, keypoints, descriptors); 387 Ptr<ORB> orb = ORB::create() local [all...] |
test_keypoints.cpp | 163 CV_FeatureDetectorKeypointsTest test(ORB::create());
|
test_detectors_regression.cpp | 290 CV_FeatureDetectorTest test( "detector-orb", ORB::create() );
|
test_rotation_and_scale_invariance.cpp | 606 DetectorRotationInvarianceTest test(ORB::create(), 625 Ptr<Feature2D> f2d = ORB::create(); 632 // DescriptorRotationInvarianceTest test(Algorithm::create<FeatureDetector>("Feature2D.ORB"), 663 // DetectorScaleInvarianceTest test(Algorithm::create<FeatureDetector>("Feature2D.ORB"), 684 // DescriptorScaleInvarianceTest test(Algorithm::create<FeatureDetector>("Feature2D.ORB"), 685 // Algorithm::create<DescriptorExtractor>("Feature2D.ORB"), 686 // Algorithm::create<DescriptorExtractor>("Feature2D.ORB")->defaultNorm(), 693 // DescriptorScaleInvarianceTest test(Algorithm::create<FeatureDetector>("Feature2D.ORB"),
|
/external/opencv3/modules/java/src/ |
features2d+FeatureDetector.java | 33 ORB = 5, 45 GRID_ORB = GRIDDETECTOR + ORB, 57 PYRAMID_ORB = PYRAMIDDETECTOR + ORB, 69 DYNAMIC_ORB = DYNAMICDETECTOR + ORB,
|
features2d+DescriptorExtractor.java | 29 ORB = 3, 36 OPPONENT_ORB = OPPONENTEXTRACTOR + ORB,
|
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/ |
RobustMatcher.h | 21 // ORB is the default feature 22 detector_ = cv::ORB::create(); 23 extractor_ = cv::ORB::create();
|
main_registration.cpp | 98 Ptr<FeatureDetector> detector = ORB::create(numKeyPoints);
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/cr16/ |
or_test.s | 5 # ORB imm4/imm16, reg 7 orb $0xf,r1 8 orb $0xff,r2 9 orb $0xfff,r1 10 orb $0xffff,r2 11 orb $20,r1 12 orb $10,r2 14 # ORB reg, reg 16 orb r1,r2 17 orb r2,r [all...] |
/external/opencv3/modules/features2d/misc/java/src/cpp/ |
features2d_manual.hpp | 33 ORB = 5, 49 GRID_ORB = GRIDDETECTOR + ORB, 65 PYRAMID_ORB = PYRAMIDDETECTOR + ORB, 80 DYNAMIC_ORB = DYNAMICDETECTOR + ORB, 90 //supported: FAST STAR SIFT SURF ORB MSER GFTT HARRIS BRISK AKAZE Grid(XXXX) Pyramid(XXXX) Dynamic(XXXX) 126 case ORB: 127 fd = ORB::create(); 317 ORB = 3, 330 OPPONENT_ORB = OPPONENTEXTRACTOR + ORB, 337 //supported SIFT, SURF, ORB, BRIEF, BRISK, FREAK, AKAZE, Opponent(XXXX [all...] |
/external/opencv3/modules/cudafeatures2d/include/opencv2/ |
cudafeatures2d.hpp | 89 preferable choices for SIFT and SURF descriptors, NORM_HAMMING should be used with ORB, BRISK and 448 // ORB 451 /** @brief Class implementing the ORB (*oriented BRIEF*) keypoint detector and descriptor extractor 453 * @sa cv::ORB 455 class CV_EXPORTS ORB : public cv::ORB, public Feature2DAsync 469 static Ptr<ORB> create(int nfeatures=500, 475 int scoreType=ORB::HARRIS_SCORE,
|
/external/opencv3/modules/cudafeatures2d/perf/ |
perf_features2d.cpp | 95 // ORB 99 PERF_TEST_P(Image_NFeatures, ORB, 112 cv::Ptr<cv::cuda::ORB> d_orb = cv::cuda::ORB::create(nFeatures); 134 cv::Ptr<cv::ORB> orb = cv::ORB::create(nFeatures); local 139 TEST_CYCLE() orb->detectAndCompute(img, cv::noArray(), cpu_keypoints, cpu_descriptors);
|
/external/opencv3/samples/cpp/tutorial_code/xfeatures2D/ |
LATCH_match.cpp | 36 Ptr<cv::ORB> orb_detector = cv::ORB::create(10000);
|
/external/opencv3/modules/cudafeatures2d/src/ |
orb.cpp | 50 Ptr<cv::cuda::ORB> cv::cuda::ORB::create(int, float, int, int, int, int, int, int, int, bool) { throw_no_cuda(); return Ptr<cv::cuda::ORB>(); } 56 namespace orb 338 class ORB_Impl : public cv::cuda::ORB 536 cv::cuda::device::orb::loadUMax(&u_max[0], static_cast<int>(u_max.size())); 662 using namespace cv::cuda::device::orb; 679 using namespace cv::cuda::device::orb; [all...] |
/external/opencv3/modules/cudafeatures2d/test/ |
test_features2d.cpp | 111 // ORB 125 CV_ENUM(ORB_ScoreType, cv::ORB::HARRIS_SCORE, cv::ORB::FAST_SCORE) 127 PARAM_TEST_CASE(ORB, cv::cuda::DeviceInfo, ORB_FeaturesCount, ORB_ScaleFactor, ORB_LevelsCount, ORB_EdgeThreshold, ORB_firstLevel, ORB_WTA_K, ORB_ScoreType, ORB_PatchSize, ORB_BlurForDescriptor) 157 CUDA_TEST_P(ORB, Accuracy) 165 cv::Ptr<cv::cuda::ORB> orb = local 166 cv::cuda::ORB::create(nFeatures, scaleFactor, nLevels, edgeThreshold, firstLevel, 175 orb->detectAndComputeAsync(loadMat(image), loadMat(mask), keypoints, descriptors); 186 orb->detectAndCompute(loadMat(image), loadMat(mask), keypoints, descriptors) [all...] |
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
matchers.hpp | 118 /** @brief ORB features finder. : 120 @sa detail::FeaturesFinder, ORB 130 Ptr<ORB> orb; member in class:cv::detail::OrbFeaturesFinder
|
/external/opencv3/samples/cpp/tutorial_code/features2D/AKAZE_tracking/ |
planar_tracking.cpp | 142 Ptr<ORB> orb = ORB::create(); local 143 orb->setMaxFeatures(stats.keypoints); 146 Tracker orb_tracker(orb, matcher); 151 orb_tracker.setFirstFrame(frame, bb, "ORB", stats); 166 orb->setMaxFeatures(stats.keypoints); 182 printStatistics("ORB", orb_stats);
|
/external/opencv3/modules/features2d/misc/java/test/ |
ORBDescriptorExtractorTest.java | 36 extractor = DescriptorExtractor.create(DescriptorExtractor.ORB); 103 String truth = "<?xml version=\"1.0\"?>\n<opencv_storage>\n<name>Feature2D.ORB</name>\n<WTA_K>2</WTA_K>\n<edgeThreshold>31</edgeThreshold>\n<firstLevel>0</firstLevel>\n<nFeatures>500</nFeatures>\n<nLevels>8</nLevels>\n<patchSize>31</patchSize>\n<scaleFactor>1.2000000476837158e+00</scaleFactor>\n<scoreType>0</scoreType>\n</opencv_storage>\n"; 114 String truth = "%YAML:1.0\nname: \"Feature2D.ORB\"\nWTA_K: 2\nedgeThreshold: 31\nfirstLevel: 0\nnFeatures: 500\nnLevels: 8\npatchSize: 31\nscaleFactor: 1.2000000476837158e+00\nscoreType: 0\n";
|
/external/opencv3/modules/features2d/include/opencv2/ |
features2d.hpp | 247 /** @brief Class implementing the ORB (*oriented BRIEF*) keypoint detector and descriptor extractor 254 class CV_EXPORTS_W ORB : public Feature2D 259 /** @brief The ORB constructor 289 CV_WRAP static Ptr<ORB> create(int nfeatures=500, float scaleFactor=1.2f, int nlevels=8, int edgeThreshold=31, 290 int firstLevel=0, int WTA_K=2, int scoreType=ORB::HARRIS_SCORE, int patchSize=31, int fastThreshold=20); [all...] |
/external/opencv3/samples/cpp/ |
matchmethod_orb_akaze_brisk.cpp | 10 cout << "\n This program demonstrates how to detect compute and match ORB BRISK and AKAZE descriptors \n" 27 typeDesc.push_back("ORB"); // see http://docs.opencv.org/trunk/de/dbf/classcv_1_1BRISK.html 83 if (*itDesc == "ORB"){ 84 b = ORB::create();
|
/external/opencv3/samples/gpu/performance/ |
tests.cpp | 337 TEST(ORB) 342 Ptr<ORB> orb = ORB::create(4000); local 347 orb->detectAndCompute(src, Mat(), keypoints, descriptors); 350 orb->detectAndCompute(src, Mat(), keypoints, descriptors); 353 Ptr<cuda::ORB> d_orb = cuda::ORB::create();
|
/external/opencv3/modules/features2d/src/ |
orb.cpp | 653 class ORB_Impl : public ORB [all...] |