Searched refs:cornerScore (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/modules/features2d/src/opencl/ |
D | fast.cl | 4 inline int cornerScore(__global const uchar* img, int step) 141 int s = cornerScore(img, step); 143 if( (x < 4 || s > cornerScore(img-1, step)) + 144 (y < 4 || s > cornerScore(img-step, step)) != 2 ) 146 if( (x >= cols - 4 || s > cornerScore(img+1, step)) + 147 (y >= rows - 4 || s > cornerScore(img+step, step)) + 148 (x < 4 || y < 4 || s > cornerScore(img-step-1, step)) + 149 (x >= cols - 4 || y < 4 || s > cornerScore(img-step+1, step)) + 150 (x < 4 || y >= rows - 4 || s > cornerScore(img+step-1, step)) + 151 (x >= cols - 4 || y >= rows - 4 || s > cornerScore(img+step+1, step)) == 6)
|
/external/opencv3/modules/features2d/src/ |
D | fast_score.hpp | 57 int cornerScore(const uchar* ptr, const int pixel[], int threshold);
|
D | fast.cpp | 156 … curr[j+k] = (uchar)cornerScore<patternSize>(ptr+k, pixel, threshold); in FAST_t() 195 … curr[j] = (uchar)cornerScore<patternSize>(ptr, pixel, threshold); in FAST_t() 217 … curr[j] = (uchar)cornerScore<patternSize>(ptr, pixel, threshold); in FAST_t()
|
D | fast_score.cpp | 120 int cornerScore<16>(const uchar* ptr, const int pixel[], int threshold) in cornerScore() function 210 int cornerScore<12>(const uchar* ptr, const int pixel[], int threshold) in cornerScore() function 294 int cornerScore<8>(const uchar* ptr, const int pixel[], int threshold) in cornerScore() function
|
/external/opencv3/modules/cudafeatures2d/src/cuda/ |
D | fast.cu | 195 __device__ int cornerScore(const uint C[4], const int v, const int threshold) in cornerScore() function 270 if (calcScore) score(i, j) = cornerScore(C, v, threshold); in calcKeypoints()
|