Home
last modified time | relevance | path

Searched refs:BFMatcher (Results 1 – 18 of 18) sorted by relevance

/external/opencv3/doc/py_tutorials/py_feature2d/py_matcher/
Dpy_matcher.markdown18 For BF matcher, first we have to create the BFMatcher object using **cv2.BFMatcher()**. It takes two
31 Once it is created, two important methods are *BFMatcher.match()* and *BFMatcher.knnMatch()*. First
66 Next we create a BFMatcher object with distance measurement cv2.NORM_HAMMING (since we are using
72 # create BFMatcher object
73 bf = cv2.BFMatcher(cv2.NORM_HAMMING, crossCheck=True)
102 This time, we will use BFMatcher.knnMatch() to get k best matches. In this example, we will take k=2
119 # BFMatcher with default params
120 bf = cv2.BFMatcher()
143 features. It works more faster than BFMatcher for large datasets. We will see the second example
/external/opencv3/modules/features2d/perf/opencl/
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/
Dtest_brute_force_matcher.cpp120 BFMatcher matcher(distType); in OCL_TEST_P()
146 BFMatcher matcher(distType); in OCL_TEST_P()
182 BFMatcher matcher(distType); in OCL_TEST_P()
/external/opencv3/doc/tutorials/features2d/feature_description/
Dfeature_description.markdown13 - Use a @ref cv::BFMatcher to match the features vector
61 BFMatcher matcher(NORM_L2);
/external/opencv3/modules/features2d/src/
Dmatchers.cpp678 BFMatcher::BFMatcher( int _normType, bool _crossCheck ) in BFMatcher() function in cv::BFMatcher
684 Ptr<DescriptorMatcher> BFMatcher::clone( bool emptyTrainData ) const in clone()
686 Ptr<BFMatcher> matcher = makePtr<BFMatcher>(normType, crossCheck); in clone()
718 void BFMatcher::knnMatchImpl( InputArray _queryDescriptors, std::vector<std::vector<DMatch> >& matc… in knnMatchImpl()
865 void BFMatcher::radiusMatchImpl( InputArray _queryDescriptors, std::vector<std::vector<DMatch> >& m… in radiusMatchImpl()
986 dm = makePtr<BFMatcher>(int(NORM_L2)); // anonymous enums can't be template parameters in create()
990 dm = makePtr<BFMatcher>(int(NORM_L2SQR)); in create()
994 dm = makePtr<BFMatcher>(int(NORM_L1)); in create()
999 dm = makePtr<BFMatcher>(int(NORM_HAMMING)); in create()
1003 dm = makePtr<BFMatcher>(int(NORM_HAMMING2)); in create()
/external/opencv3/modules/cudafeatures2d/perf/
Dperf_features2d.cpp185 cv::BFMatcher matcher(normType);
247 cv::BFMatcher matcher(normType);
301 cv::BFMatcher matcher(normType);
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
DRobustMatcher.h26 matcher_ = cv::makePtr<cv::BFMatcher>((int)cv::NORM_HAMMING, false); in RobustMatcher()
/external/opencv3/samples/cpp/tutorial_code/features2D/
DAKAZE_match.cpp29 BFMatcher matcher(NORM_HAMMING); in main()
/external/opencv3/samples/cpp/tutorial_code/xfeatures2D/
DLATCH_match.cpp47 BFMatcher matcher(NORM_HAMMING); in main()
/external/opencv3/modules/features2d/include/opencv2/
Dfeatures2d.hpp964 class CV_EXPORTS_W BFMatcher : public DescriptorMatcher class
980 CV_WRAP BFMatcher( int normType=NORM_L2, bool crossCheck=false );
981 virtual ~BFMatcher() {} in ~BFMatcher()
/external/opencv3/modules/features2d/test/
Dtest_rotation_and_scale_invariance.cpp336 BFMatcher bfmatcher(normType); in run()
539 BFMatcher bfmatcher(normType); in run()
/external/opencv3/doc/tutorials/features2d/akaze_matching/
Dakaze_matching.markdown63 BFMatcher matcher(NORM_HAMMING);
/external/opencv3/samples/python2/
Dfind_obj.py54 matcher = cv2.BFMatcher(norm)
/external/opencv3/modules/stitching/src/
Dmatchers.cpp161 matcher = makePtr<BFMatcher>((int)NORM_L2); in match()
/external/opencv3/modules/cudafeatures2d/test/
Dtest_features2d.cpp194 cv::BFMatcher matcher(cv::NORM_HAMMING); in CUDA_TEST_P()
/external/opencv3/modules/calib3d/test/
Dtest_homography.cpp648 BFMatcher matcher(NORM_HAMMING,false); in TEST()
/external/opencv3/samples/gpu/performance/
Dtests.cpp372 BFMatcher matcher(NORM_L2); in TEST()
/external/opencv3/doc/tutorials/calib3d/real_time_pose/
Dreal_time_pose.markdown272 @ref cv::BFMatcher matcher as we increase the trained collectction of features. Then, for