Searched refs:s_imgIdx (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/cudafeatures2d/src/cuda/ |
D | bf_knnmatch.cu | 174 float* s_distance, int* s_trainIdx, int* s_imgIdx) in findBestMatch() argument 179 (void) s_imgIdx; in findBestMatch() 232 s_imgIdx += threadIdx.y * BLOCK_SIZE; in findBestMatch() 236 s_imgIdx[threadIdx.x] = bestImgIdx1; in findBestMatch() 255 myBestImgIdx1 = s_imgIdx[i]; in findBestMatch() 261 myBestImgIdx2 = s_imgIdx[i]; in findBestMatch() 270 s_imgIdx[threadIdx.x] = bestImgIdx2; in findBestMatch() 285 myBestImgIdx2 = s_imgIdx[i]; in findBestMatch() 458 int* s_imgIdx = (int*)(smem + 2 * BLOCK_SIZE * BLOCK_SIZE); in matchUnrolledCached() local 460 … myBestTrainIdx1, myBestTrainIdx2, myBestImgIdx1, myBestImgIdx2, s_distance, s_trainIdx, s_imgIdx); in matchUnrolledCached() [all …]
|
D | bf_match.cu | 69 …estDistance, int& bestTrainIdx, int& bestImgIdx, float* s_distance, int* s_trainIdx, int* s_imgIdx) in findBestMatch() argument 73 s_imgIdx += threadIdx.y * BLOCK_SIZE; in findBestMatch() 75 …reduceKeyVal<BLOCK_SIZE>(s_distance, bestDistance, smem_tuple(s_trainIdx, s_imgIdx), thrust::tie(b… in findBestMatch() 216 int* s_imgIdx = (int*)(smem + 2 * BLOCK_SIZE * BLOCK_SIZE); in matchUnrolledCached() local 218 …tMatch<BLOCK_SIZE>(myBestDistance, myBestTrainIdx, myBestImgIdx, s_distance, s_trainIdx, s_imgIdx); in matchUnrolledCached()
|