Home
last modified time | relevance | path

Searched refs:HARRIS_SCORE (Results 1 – 6 of 6) sorted by relevance

/external/opencv3/modules/features2d/test/
Dtest_orb.cpp50 Ptr<FeatureDetector> fd = ORB::create(10000, 1.2f, 8, 31, 0, 2, ORB::HARRIS_SCORE, 31, 20); in TEST()
/external/opencv3/modules/cudafeatures2d/include/opencv2/
Dcudafeatures2d.hpp475 int scoreType=ORB::HARRIS_SCORE,
/external/opencv3/modules/features2d/include/opencv2/
Dfeatures2d.hpp257 enum { kBytes = 32, HARRIS_SCORE=0, FAST_SCORE=1 }; enumerator
290 …int firstLevel=0, int WTA_K=2, int scoreType=ORB::HARRIS_SCORE, int patchSize=31, int fastThreshol…
/external/opencv3/modules/cudafeatures2d/test/
Dtest_features2d.cpp125 CV_ENUM(ORB_ScoreType, cv::ORB::HARRIS_SCORE, cv::ORB::FAST_SCORE) in CV_ENUM() argument
213 testing::Values(ORB_ScoreType(cv::ORB::HARRIS_SCORE)),
/external/opencv3/modules/features2d/src/
Dorb.cpp837 …KeyPointsFilter::retainBest(keypoints, scoreType == ORB_Impl::HARRIS_SCORE ? 2 * featuresNum : fea… in computeKeyPoints()
863 if( scoreType == ORB_Impl::HARRIS_SCORE ) in computeKeyPoints()
/external/opencv3/modules/cudafeatures2d/src/
Dorb.cpp705 if (scoreType_ == ORB::HARRIS_SCORE) in computeKeyPointsPyramid()