Searched refs:nQuery (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/cudafeatures2d/src/ |
D | brute_force_matcher.cpp | 366 const int nQuery = query.rows; in matchAsync() local 368 _matches.create(2, nQuery, CV_32SC1); in matchAsync() 371 GpuMat trainIdx(1, nQuery, CV_32SC1, matches.ptr(0)); in matchAsync() 372 GpuMat distance(1, nQuery, CV_32FC1, matches.ptr(1)); in matchAsync() 428 const int nQuery = query.rows; in matchAsync() local 430 _matches.create(3, nQuery, CV_32SC1); in matchAsync() 433 GpuMat trainIdx(1, nQuery, CV_32SC1, matches.ptr(0)); in matchAsync() 434 GpuMat imgIdx(1, nQuery, CV_32SC1, matches.ptr(1)); in matchAsync() 435 GpuMat distance(1, nQuery, CV_32FC1, matches.ptr(2)); in matchAsync() 461 const int nQuery = gpu_matches.cols; in matchConvert() local [all …]
|
/external/opencv3/modules/features2d/src/ |
D | matchers.cpp | 125 const int nQuery = trainIdx.cols; in ocl_matchConvert() local 128 matches.reserve(nQuery); in ocl_matchConvert() 132 for (int queryIdx = 0; queryIdx < nQuery; ++queryIdx, ++trainIdx_ptr, ++distance_ptr) in ocl_matchConvert() 227 const int nQuery = trainIdx.type() == CV_32SC2 ? trainIdx.cols : trainIdx.rows; in ocl_knnMatchConvert() local 231 matches.reserve(nQuery); in ocl_knnMatchConvert() 236 for (int queryIdx = 0; queryIdx < nQuery; ++queryIdx) in ocl_knnMatchConvert() 341 const int nQuery = trainIdx.rows; in ocl_radiusMatchConvert() local 344 matches.reserve(nQuery); in ocl_radiusMatchConvert() 348 for (int queryIdx = 0; queryIdx < nQuery; ++queryIdx) in ocl_radiusMatchConvert()
|