Searched refs:img_2 (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/doc/tutorials/features2d/feature_detection/ |
D | feature_detection.markdown | 41 Mat img_2 = imread( argv[2], IMREAD_GRAYSCALE ); 43 if( !img_1.data || !img_2.data ) 54 detector->detect( img_2, keypoints_2 ); 60 drawKeypoints( img_2, keypoints_2, img_keypoints_2, Scalar::all(-1), DrawMatchesFlags::DEFAULT );
|
/external/opencv3/doc/tutorials/features2d/feature_description/ |
D | feature_description.markdown | 43 Mat img_2 = imread( argv[2], IMREAD_GRAYSCALE ); 45 if( !img_1.data || !img_2.data ) 58 detector->detectAndCompute( img_2, Mat(), keypoints_2, descriptors_2 ); 67 drawMatches( img_1, keypoints_1, img_2, keypoints_2, matches, img_matches );
|
/external/opencv3/doc/tutorials/features2d/feature_flann_matcher/ |
D | feature_flann_matcher.markdown | 52 Mat img_2 = imread( argv[2], IMREAD_GRAYSCALE ); 54 if( !img_1.data || !img_2.data ) 67 detector->detectAndCompute( img_2, Mat(), keypoints_2, descriptors_2 ); 99 drawMatches( img_1, keypoints_1, img_2, keypoints_2,
|
/external/opencv3/modules/calib3d/test/ |
D | test_homography.cpp | 640 Mat img_2 = imread(cvtest::TS::ptr()->get_data_path() + "cv/optflow/image2.png", 0); in TEST() local 645 orb->detectAndCompute( img_2, Mat(), keypoints_2, descriptors_2, false ); in TEST()
|