Home
last modified time | relevance | path

Searched refs:query_rows (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/features2d/src/opencl/
Dbrute_force_match.cl183 int query_rows,
195 const int queryOffset = min(queryIdx, query_rows - 1) * step;
269 …if (queryIdx < query_rows && trainIdx < train_rows && result < myBestDistance /*&& mask(queryIdx, …
300 if (queryIdx < query_rows && lidx == 0)
315 int query_rows,
330 const int queryOffset = min(queryIdx, query_rows - 1) * step;
369 if (queryIdx < query_rows && trainIdx < train_rows && convert_float(result) < maxDistance)
386 int query_rows,
398 const int queryOffset = min(queryIdx, query_rows - 1) * step;
473 if (queryIdx < query_rows && trainIdx < train_rows)
[all …]
/external/opencv3/modules/features2d/src/
Dmatchers.cpp69 const int query_rows = query.rows(); in ocl_matchSingle() local
72 ensureSizeIsEnough(1, query_rows, CV_32S, trainIdx); in ocl_matchSingle()
73 ensureSizeIsEnough(1, query_rows, CV_32F, distance); in ocl_matchSingle()
167 const int query_rows = query.rows(); in ocl_knnMatchSingle() local
170 ensureSizeIsEnough(1, query_rows, CV_32SC2, trainIdx); in ocl_knnMatchSingle()
171 ensureSizeIsEnough(1, query_rows, CV_32FC2, distance); in ocl_knnMatchSingle()
200 size_t globalSize[] = {(query_rows + block_size - 1) / block_size * block_size, block_size}; in ocl_knnMatchSingle()
279 const int query_rows = query.rows(); in ocl_radiusMatchSingle() local
282 ensureSizeIsEnough(1, query_rows, CV_32SC1, nMatches); in ocl_radiusMatchSingle()
286 ensureSizeIsEnough(query_rows, std::max((train_rows / 100), 10), CV_32SC1, trainIdx); in ocl_radiusMatchSingle()
[all …]