Home
last modified time | relevance | path

Searched refs:img_2 (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/doc/tutorials/features2d/feature_detection/
Dfeature_detection.markdown41 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/
Dfeature_description.markdown43 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/
Dfeature_flann_matcher.markdown52 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/
Dtest_homography.cpp640 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()