Searched refs:curMatches (Results 1 - 2 of 2) sorted by relevance

/external/opencv3/modules/cudafeatures2d/src/
H A Dbrute_force_matcher.cpp536 std::vector< std::vector<DMatch> > curMatches;
546 knnMatch(query, trainDescCollection_[imgIdx], curMatches, k, masks.empty() ? GpuMat() : masks[imgIdx]);
550 std::vector<DMatch>& localMatch = curMatches[queryIdx];
787 std::vector<DMatch>& curMatches = matches.back();
788 curMatches.reserve(k);
801 curMatches.push_back(m);
809 if (compactResult && curMatches.empty())
1047 std::vector<DMatch>& curMatches = matches.back();
1058 curMatches[i] = m;
1061 std::sort(curMatches
[all...]
/external/opencv3/modules/features2d/src/
H A Dmatchers.cpp239 std::vector<DMatch> &curMatches = matches.back(); local
240 curMatches.reserve(k);
252 curMatches.push_back(m);
256 if (compactResult && curMatches.empty())
363 std::vector<DMatch> &curMatches = matches.back(); local
373 curMatches[i] = m;
376 std::sort(curMatches.begin(), curMatches.end());

Completed in 187 milliseconds