Lines Matching refs:threshold
195 __device__ int cornerScore(const uint C[4], const int v, const int threshold) in cornerScore() argument
199 int min = threshold + 1; in cornerScore()
221 …nst Mask mask, short2* kpLoc, const unsigned int maxKeypoints, PtrStepi score, const int threshold) in calcKeypoints() argument
247 int d1 = diffType(v, C[1] & 0xff, threshold); in calcKeypoints()
248 int d2 = diffType(v, C[3] & 0xff, threshold); in calcKeypoints()
266 calcMask(C, v, threshold, mask1, mask2); in calcKeypoints()
270 if (calcScore) score(i, j) = cornerScore(C, v, threshold); in calcKeypoints()
282 …PtrStepSzb mask, short2* kpLoc, int maxKeypoints, PtrStepSzi score, int threshold, cudaStream_t st… in calcKeypoints_gpu() argument
298 …ts<true><<<grid, block, 0, stream>>>(img, SingleMask(mask), kpLoc, maxKeypoints, score, threshold); in calcKeypoints_gpu()
300 …oints<true><<<grid, block, 0, stream>>>(img, WithOutMask(), kpLoc, maxKeypoints, score, threshold); in calcKeypoints_gpu()
305 …s<false><<<grid, block, 0, stream>>>(img, SingleMask(mask), kpLoc, maxKeypoints, score, threshold); in calcKeypoints_gpu()
307 …ints<false><<<grid, block, 0, stream>>>(img, WithOutMask(), kpLoc, maxKeypoints, score, threshold); in calcKeypoints_gpu()