Home
last modified time | relevance | path

Searched defs:queryIdx (Results 1 – 10 of 10) sorted by relevance

/external/opencv3/modules/cudafeatures2d/src/cuda/
Dbf_radius_match.cu64 const int queryIdx = blockIdx.y * BLOCK_SIZE + threadIdx.y; in matchUnrolled() local
107 bestTrainIdx.ptr(queryIdx)[ind] = trainIdx; in matchUnrolled() local
108 if (SAVE_IMG_IDX) bestImgIdx.ptr(queryIdx)[ind] = imgIdx; in matchUnrolled() local
109 bestDistance.ptr(queryIdx)[ind] = distVal; in matchUnrolled() local
172 const int queryIdx = blockIdx.y * BLOCK_SIZE + threadIdx.y; in match() local
214 bestTrainIdx.ptr(queryIdx)[ind] = trainIdx; in match() local
215 if (SAVE_IMG_IDX) bestImgIdx.ptr(queryIdx)[ind] = imgIdx; in match() local
216 bestDistance.ptr(queryIdx)[ind] = distVal; in match() local
Dbf_knnmatch.cu305 __device__ void loadQueryToSmem(int queryIdx, const PtrStepSz<T>& query, U* s_query) in loadQueryToSmem()
316 …__device__ void loopUnrolledCached(int queryIdx, const PtrStepSz<T>& query, int imgIdx, const PtrS… in loopUnrolledCached()
381 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y; in matchUnrolledCached() local
431 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y; in matchUnrolledCached() local
491 …__device__ void loopUnrolled(int queryIdx, const PtrStepSz<T>& query, int imgIdx, const PtrStepSz<… in loopUnrolled()
560 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y; in matchUnrolled() local
608 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y; in matchUnrolled() local
666 …__device__ void loop(int queryIdx, const PtrStepSz<T>& query, int imgIdx, const PtrStepSz<T>& trai… in loop()
734 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y; in match() local
782 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y; in match() local
[all …]
Dbf_match.cu82 __device__ void loadQueryToSmem(int queryIdx, const PtrStepSz<T>& query, U* s_query) in loadQueryToSmem()
93 …__device__ void loopUnrolledCached(int queryIdx, const PtrStepSz<T>& query,volatile int imgIdx, co… in loopUnrolledCached()
143 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y; in matchUnrolledCached() local
192 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y; in matchUnrolledCached() local
249 …__device__ void loopUnrolled(int queryIdx, const PtrStepSz<T>& query,volatile int imgIdx, const Pt… in loopUnrolled()
303 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y; in matchUnrolled() local
350 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y; in matchUnrolled() local
405 …__device__ void loop(int queryIdx, const PtrStepSz<T>& query, volatile int imgIdx, const PtrStepSz… in loop()
458 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y; in match() local
505 const int queryIdx = blockIdx.x * BLOCK_SIZE + threadIdx.y; in match() local
/external/opencv3/modules/core/misc/java/src/java/
Dcore+DMatch.java14 public int queryIdx; field in DMatch
/external/guice/extensions/servlet/src/com/google/inject/servlet/
DUriPatternType.java42 int queryIdx = uri.indexOf('?'); in getUri() local
/external/opencv3/modules/cudafeatures2d/src/
Dbrute_force_matcher.cpp482 for (int queryIdx = 0; queryIdx < nQuery; ++queryIdx) in matchConvert() local
548 for (int queryIdx = 0; queryIdx < query.rows; ++queryIdx) in knnMatch() local
784 for (int queryIdx = 0; queryIdx < nQuery; ++queryIdx) in knnMatchConvert() local
1033 for (int queryIdx = 0; queryIdx < nQuery; ++queryIdx) in radiusMatchConvert() local
/external/opencv3/modules/features2d/src/
Dmatchers.cpp132 for (int queryIdx = 0; queryIdx < nQuery; ++queryIdx, ++trainIdx_ptr, ++distance_ptr) in ocl_matchConvert() local
236 for (int queryIdx = 0; queryIdx < nQuery; ++queryIdx) in ocl_knnMatchConvert() local
348 for (int queryIdx = 0; queryIdx < nQuery; ++queryIdx) in ocl_radiusMatchConvert() local
654 bool DescriptorMatcher::isPossibleMatch( InputArray _mask, int queryIdx, int trainIdx ) in isPossibleMatch()
660 bool DescriptorMatcher::isMaskedOut( InputArrayOfArrays _masks, int queryIdx ) in isMaskedOut()
Dbagofwords.cpp198 int queryIdx = matches[i].queryIdx; in compute() local
/external/opencv3/modules/ts/src/
Dts_perf.cpp164 cv::Mat queryIdx(len, 1, CV_32SC1, len ? (void*)&array[0].queryIdx : 0, sizeof(cv::DMatch)); in addMatches() local
/external/opencv3/modules/core/include/opencv2/core/
Dtypes.hpp735 CV_PROP_RW int queryIdx; // query descriptor index member in cv::DMatch