HomeSort by relevance Sort by last modified time
    Searched refs:gpu_matches (Results 1 - 3 of 3) sorted by null

  /external/opencv3/modules/cudafeatures2d/src/
brute_force_matcher.cpp 228 virtual void matchConvert(InputArray gpu_matches,
255 virtual void knnMatchConvert(InputArray gpu_matches,
283 virtual void radiusMatchConvert(InputArray gpu_matches,
443 Mat gpu_matches;
446 _gpu_matches.getGpuMat().download(gpu_matches);
450 gpu_matches = _gpu_matches.getMat();
453 if (gpu_matches.empty())
459 CV_Assert( (gpu_matches.type() == CV_32SC1) && (gpu_matches.rows == 2 || gpu_matches.rows == 3) )
    [all...]
  /external/opencv3/modules/cudafeatures2d/perf/
perf_features2d.cpp 178 std::vector<cv::DMatch> gpu_matches; local
179 d_matcher->matchConvert(d_matches, gpu_matches);
181 SANITY_CHECK_MATCHES(gpu_matches);
240 std::vector<cv::DMatch> gpu_matches; local
241 toOneRowMatches(matchesTbl, gpu_matches);
243 SANITY_CHECK_MATCHES(gpu_matches);
294 std::vector<cv::DMatch> gpu_matches; local
295 toOneRowMatches(matchesTbl, gpu_matches);
297 SANITY_CHECK_MATCHES(gpu_matches);
  /external/opencv3/modules/cudafeatures2d/include/opencv2/
cudafeatures2d.hpp 198 @param gpu_matches Matches, returned from DescriptorMatcher::matchAsync.
201 virtual void matchConvert(InputArray gpu_matches,
276 @param gpu_matches Matches, returned from DescriptorMatcher::knnMatchAsync.
282 virtual void knnMatchConvert(InputArray gpu_matches,
360 @param gpu_matches Matches, returned from DescriptorMatcher::radiusMatchAsync.
366 virtual void radiusMatchConvert(InputArray gpu_matches,

Completed in 6746 milliseconds