-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsurfDiscMatcher.cpp
More file actions
67 lines (63 loc) · 2.67 KB
/
surfDiscMatcher.cpp
File metadata and controls
67 lines (63 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <iostream>
#include "opencv2/core.hpp"
#ifdef HAVE_OPENCV_XFEATURES2D
#include "opencv2/highgui.hpp"
#include "opencv2/features2d.hpp"
#include "opencv2/xfeatures2d.hpp"
using namespace cv;
using namespace cv::xfeatures2d;
using std::cout;
using std::endl;
const char* keys =
"{ help h | | Print help message. }"
"{ input1 | daySequence2--00070.jpg | Path to input image 1. }"
"{ input2 | daySequence2--00075.jpg | Path to input image 2. }";
int main( int argc, char* argv[] )
{
CommandLineParser parser( argc, argv, keys );
Mat img1 = imread( samples::findFile( parser.get<String>("input1") ), IMREAD_GRAYSCALE );
Mat img2 = imread( samples::findFile( parser.get<String>("input2") ), IMREAD_GRAYSCALE );
if ( img1.empty() || img2.empty() )
{
cout << "Could not open or find the image!\n" << endl;
parser.printMessage();
return -1;
}
//-- Step 1: Detect the keypoints using SURF Detector, compute the descriptors
int minHessian = 400;
Ptr<SURF> detector = SURF::create( minHessian );
std::vector<KeyPoint> keypoints1, keypoints2;
Mat descriptors1, descriptors2;
detector->detectAndCompute( img1, noArray(), keypoints1, descriptors1 );
detector->detectAndCompute( img2, noArray(), keypoints2, descriptors2 );
//-- Step 2: Matching descriptor vectors with a brute force matcher
// Since SURF is a floating-point descriptor NORM_L2 is used
Ptr<DescriptorMatcher> matcher = DescriptorMatcher::create(DescriptorMatcher::BRUTEFORCE);
std::vector< DMatch > matches;
matcher->match( descriptors1, descriptors2, matches );
// std::cout<<keypoints1.size()<<"--"<<descriptors1.size()<<endl;
// std::cout<<keypoints2.size()<<"--"<<descriptors2.size()<<endl;
std::cout<<"matches: "<<matches.size()<<endl;
// for (int i=750;i<1000;i++){
// std::cout<<"matches["<<i<<"]: "<<matches[i].queryIdx<<keypoints1[i].pt<<" -- "<<matches[i].trainIdx<<keypoints2[i].pt<<"--distance--"<<matches[i].distance<<endl;
// }
for (int i=100; i<105; i++){
std::cout<<matches[i].queryIdx<<","<<matches[i].trainIdx<<std::endl;
std::cout<<keypoints1[matches[i].queryIdx].pt<<" coordinates matched with "<<keypoints2[matches[i].trainIdx].pt<<endl;
}
//std::cout<<matches[].imgIdx<<endl;
//-- Draw matches
Mat img_matches;
drawMatches( img1, keypoints1, img2, keypoints2, matches, img_matches );
//-- Show detected matches
imshow("Matches", img_matches );
waitKey();
return 0;
}
#else
int main()
{
std::cout << "This tutorial code needs the xfeatures2d contrib module to be run." << std::endl;
return 0;
}
#endif