/external/opencv3/doc/py_tutorials/py_feature2d/py_matcher/ |
D | py_matcher.markdown | 18 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/ |
D | perf_brute_force_matcher.cpp | 71 BFMatcher matcher(NORM_L2); 92 BFMatcher matcher(NORM_L2); 116 BFMatcher matcher(NORM_L2);
|
/external/opencv3/modules/features2d/test/ocl/ |
D | test_brute_force_matcher.cpp | 120 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/ |
D | feature_description.markdown | 13 - Use a @ref cv::BFMatcher to match the features vector 61 BFMatcher matcher(NORM_L2);
|
/external/opencv3/modules/features2d/src/ |
D | matchers.cpp | 678 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/ |
D | perf_features2d.cpp | 185 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/ |
D | RobustMatcher.h | 26 matcher_ = cv::makePtr<cv::BFMatcher>((int)cv::NORM_HAMMING, false); in RobustMatcher()
|
/external/opencv3/samples/cpp/tutorial_code/features2D/ |
D | AKAZE_match.cpp | 29 BFMatcher matcher(NORM_HAMMING); in main()
|
/external/opencv3/samples/cpp/tutorial_code/xfeatures2D/ |
D | LATCH_match.cpp | 47 BFMatcher matcher(NORM_HAMMING); in main()
|
/external/opencv3/modules/features2d/include/opencv2/ |
D | features2d.hpp | 964 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/ |
D | test_rotation_and_scale_invariance.cpp | 336 BFMatcher bfmatcher(normType); in run() 539 BFMatcher bfmatcher(normType); in run()
|
/external/opencv3/doc/tutorials/features2d/akaze_matching/ |
D | akaze_matching.markdown | 63 BFMatcher matcher(NORM_HAMMING);
|
/external/opencv3/samples/python2/ |
D | find_obj.py | 54 matcher = cv2.BFMatcher(norm)
|
/external/opencv3/modules/stitching/src/ |
D | matchers.cpp | 161 matcher = makePtr<BFMatcher>((int)NORM_L2); in match()
|
/external/opencv3/modules/cudafeatures2d/test/ |
D | test_features2d.cpp | 194 cv::BFMatcher matcher(cv::NORM_HAMMING); in CUDA_TEST_P()
|
/external/opencv3/modules/calib3d/test/ |
D | test_homography.cpp | 648 BFMatcher matcher(NORM_HAMMING,false); in TEST()
|
/external/opencv3/samples/gpu/performance/ |
D | tests.cpp | 372 BFMatcher matcher(NORM_L2); in TEST()
|
/external/opencv3/doc/tutorials/calib3d/real_time_pose/ |
D | real_time_pose.markdown | 272 @ref cv::BFMatcher matcher as we increase the trained collectction of features. Then, for
|