Home
last modified time | relevance | path

Searched refs:gpu_matches (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/cudafeatures2d/src/
Dbrute_force_matcher.cpp228 virtual void matchConvert(InputArray gpu_matches,
255 virtual void knnMatchConvert(InputArray gpu_matches,
283 virtual void radiusMatchConvert(InputArray gpu_matches,
443 Mat gpu_matches; in matchConvert() local
446 _gpu_matches.getGpuMat().download(gpu_matches); in matchConvert()
450 gpu_matches = _gpu_matches.getMat(); in matchConvert()
453 if (gpu_matches.empty()) in matchConvert()
459 … CV_Assert( (gpu_matches.type() == CV_32SC1) && (gpu_matches.rows == 2 || gpu_matches.rows == 3) ); in matchConvert()
461 const int nQuery = gpu_matches.cols; in matchConvert()
470 if (gpu_matches.rows == 2) in matchConvert()
[all …]
/external/opencv3/modules/cudafeatures2d/perf/
Dperf_features2d.cpp178 std::vector<cv::DMatch> gpu_matches; variable
179 d_matcher->matchConvert(d_matches, gpu_matches);
181 SANITY_CHECK_MATCHES(gpu_matches);
240 std::vector<cv::DMatch> gpu_matches; variable
241 toOneRowMatches(matchesTbl, gpu_matches);
243 SANITY_CHECK_MATCHES(gpu_matches);
294 std::vector<cv::DMatch> gpu_matches; variable
295 toOneRowMatches(matchesTbl, gpu_matches);
297 SANITY_CHECK_MATCHES(gpu_matches);
/external/opencv3/modules/cudafeatures2d/include/opencv2/
Dcudafeatures2d.hpp201 virtual void matchConvert(InputArray gpu_matches,
282 virtual void knnMatchConvert(InputArray gpu_matches,
366 virtual void radiusMatchConvert(InputArray gpu_matches,