Searched refs:BFMatcher (Results 1 - 14 of 14) sorted by relevance

/external/opencv3/modules/features2d/perf/opencl/
H A Dperf_brute_force_matcher.cpp71 BFMatcher matcher(NORM_L2);
92 BFMatcher matcher(NORM_L2);
116 BFMatcher matcher(NORM_L2);
/external/opencv3/modules/features2d/test/ocl/
H A Dtest_brute_force_matcher.cpp120 BFMatcher matcher(distType);
146 BFMatcher matcher(distType);
182 BFMatcher matcher(distType);
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
H A DRobustMatcher.h26 matcher_ = cv::makePtr<cv::BFMatcher>((int)cv::NORM_HAMMING, false);
/external/opencv3/modules/cudafeatures2d/perf/
H A Dperf_features2d.cpp185 cv::BFMatcher matcher(normType);
247 cv::BFMatcher matcher(normType);
301 cv::BFMatcher matcher(normType);
/external/opencv3/samples/cpp/tutorial_code/features2D/
H A DAKAZE_match.cpp29 BFMatcher matcher(NORM_HAMMING);
/external/opencv3/modules/features2d/src/
H A Dmatchers.cpp53 /////////////////////// ocl functions for BFMatcher ///////////////////////////
678 BFMatcher::BFMatcher( int _normType, bool _crossCheck ) function in class:cv::BFMatcher
684 Ptr<DescriptorMatcher> BFMatcher::clone( bool emptyTrainData ) const
686 Ptr<BFMatcher> matcher = makePtr<BFMatcher>(normType, crossCheck);
718 void BFMatcher::knnMatchImpl( InputArray _queryDescriptors, std::vector<std::vector<DMatch> >& matches, int knn,
865 void BFMatcher::radiusMatchImpl( InputArray _queryDescriptors, std::vector<std::vector<DMatch> >& matches,
986 dm = makePtr<BFMatcher>(int(NORM_L2)); // anonymous enums can't be template parameters
990 dm = makePtr<BFMatcher>(in
[all...]
/external/opencv3/samples/cpp/tutorial_code/xfeatures2D/
H A DLATCH_match.cpp47 BFMatcher matcher(NORM_HAMMING);
/external/opencv3/modules/features2d/include/opencv2/
H A Dfeatures2d.hpp964 class CV_EXPORTS_W BFMatcher : public DescriptorMatcher class in namespace:cv
973 @param crossCheck If it is false, this is will be default BFMatcher behaviour when it finds the k
976 matcher's collection is the nearest and vice versa, i.e. the BFMatcher will only return consistent
980 CV_WRAP BFMatcher( int normType=NORM_L2, bool crossCheck=false );
981 virtual ~BFMatcher() {}
/external/opencv3/modules/features2d/test/
H A Dtest_rotation_and_scale_invariance.cpp336 BFMatcher bfmatcher(normType);
539 BFMatcher bfmatcher(normType);
/external/opencv3/samples/python2/
H A Dfind_obj.py54 matcher = cv2.BFMatcher(norm)
/external/opencv3/modules/calib3d/test/
H A Dtest_homography.cpp648 BFMatcher matcher(NORM_HAMMING,false);
/external/opencv3/modules/cudafeatures2d/test/
H A Dtest_features2d.cpp194 cv::BFMatcher matcher(cv::NORM_HAMMING);
/external/opencv3/modules/stitching/src/
H A Dmatchers.cpp161 matcher = makePtr<BFMatcher>((int)NORM_L2);
/external/opencv3/samples/gpu/performance/
H A Dtests.cpp372 BFMatcher matcher(NORM_L2);

Completed in 395 milliseconds