Searched defs:nQuery (Results 1 - 1 of 1) sorted by relevance

/external/opencv3/modules/features2d/src/
H A Dmatchers.cpp125 const int nQuery = trainIdx.cols; local
128 matches.reserve(nQuery);
132 for (int queryIdx = 0; queryIdx < nQuery; ++queryIdx, ++trainIdx_ptr, ++distance_ptr)
227 const int nQuery = trainIdx.type() == CV_32SC2 ? trainIdx.cols : trainIdx.rows; local
231 matches.reserve(nQuery);
236 for (int queryIdx = 0; queryIdx < nQuery; ++queryIdx)
341 const int nQuery = trainIdx.rows; local
344 matches.reserve(nQuery);
348 for (int queryIdx = 0; queryIdx < nQuery; ++queryIdx)

Completed in 274 milliseconds