Home
last modified time | relevance | path

Searched refs:AGAST_5_8 (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/features2d/perf/
Dperf_agast.cpp9 enum { AGAST_5_8 = AgastFeatureDetector::AGAST_5_8, AGAST_7_12d = AgastFeatureDetector::AGAST_7_12d, enumerator
11 CV_ENUM(AgastType, AGAST_5_8, AGAST_7_12d,
/external/opencv3/modules/features2d/include/opencv2/
Dfeatures2d.hpp444 AGAST_5_8 = 0, AGAST_7_12d = 1, AGAST_7_12s = 2, OAST_9_16 = 3, enumerator
/external/opencv3/modules/features2d/src/
Dbrisk.cpp2076 makeAgastOffsets(pixel_5_8_, (int)img_.step, AgastFeatureDetector::AGAST_5_8); in BriskLayer()
2098 makeAgastOffsets(pixel_5_8_, (int)img_.step, AgastFeatureDetector::AGAST_5_8); in BriskLayer()
2142 …int score = agast_cornerScore<AgastFeatureDetector::AGAST_5_8>(&img_.at<uchar>(y, x), pixel_5_8_, … in getAgastScore_5_8()
Dagast.cpp55 static void AGAST_5_8(InputArray _img, std::vector<KeyPoint>& keypoints, int threshold) in AGAST_5_8() function
76 makeAgastOffsets(pixel_5_8_, (int)img.step, AgastFeatureDetector::AGAST_5_8); in AGAST_5_8()
7516 case AgastFeatureDetector::AGAST_5_8: in AGAST()
7517 AGAST_5_8(_img, keypoints, threshold); in AGAST()
7540 case AgastFeatureDetector::AGAST_5_8: in AGAST()
7541 kpt->response = (float)agast_cornerScore<AgastFeatureDetector::AGAST_5_8> in AGAST()
Dagast_score.cpp83 type == AgastFeatureDetector::AGAST_5_8 ? offsets8 : 0; in makeAgastOffsets()
9015 int agast_cornerScore<AgastFeatureDetector::AGAST_5_8>(const uchar* ptr, const int pixel[], int thr… in agast_cornerScore()