cornerScore       156 modules/features2d/src/fast.cpp                                 curr[j+k] = (uchar)cornerScore<patternSize>(ptr+k, pixel, threshold);
cornerScore       195 modules/features2d/src/fast.cpp                                     curr[j] = (uchar)cornerScore<patternSize>(ptr, pixel, threshold);
cornerScore       217 modules/features2d/src/fast.cpp                                     curr[j] = (uchar)cornerScore<patternSize>(ptr, pixel, threshold);
cornerScore       120 modules/features2d/src/fast_score.cpp int cornerScore<16>(const uchar* ptr, const int pixel[], int threshold)
cornerScore       210 modules/features2d/src/fast_score.cpp int cornerScore<12>(const uchar* ptr, const int pixel[], int threshold)
cornerScore       294 modules/features2d/src/fast_score.cpp int cornerScore<8>(const uchar* ptr, const int pixel[], int threshold)
cornerScore        57 modules/features2d/src/fast_score.hpp int cornerScore(const uchar* ptr, const int pixel[], int threshold);
cornerScore       141 modules/features2d/src/opencl/fast.cl         int s = cornerScore(img, step);
cornerScore       143 modules/features2d/src/opencl/fast.cl         if( (x < 4 || s > cornerScore(img-1, step)) +
cornerScore       144 modules/features2d/src/opencl/fast.cl             (y < 4 || s > cornerScore(img-step, step)) != 2 )
cornerScore       146 modules/features2d/src/opencl/fast.cl         if( (x >= cols - 4 || s > cornerScore(img+1, step)) +
cornerScore       147 modules/features2d/src/opencl/fast.cl             (y >= rows - 4 || s > cornerScore(img+step, step)) +
cornerScore       148 modules/features2d/src/opencl/fast.cl             (x < 4 || y < 4 || s > cornerScore(img-step-1, step)) +
cornerScore       149 modules/features2d/src/opencl/fast.cl             (x >= cols - 4 || y < 4 || s > cornerScore(img-step+1, step)) +
cornerScore       150 modules/features2d/src/opencl/fast.cl             (x < 4 || y >= rows - 4 || s > cornerScore(img+step-1, step)) +
cornerScore       151 modules/features2d/src/opencl/fast.cl             (x >= cols - 4 || y >= rows - 4 || s > cornerScore(img+step+1, step)) == 6)