-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfindManyF.cpp
More file actions
73 lines (62 loc) · 2.52 KB
/
findManyF.cpp
File metadata and controls
73 lines (62 loc) · 2.52 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
68
69
70
71
72
73
#include <iostream>
#include "opencv2/core.hpp"
#ifdef HAVE_OPENCV_XFEATURES2D
#include "opencv2/highgui.hpp"
#include "opencv2/features2d.hpp"
#include "opencv2/xfeatures2d.hpp"
#include <opencv2/sfm/robust.hpp>
#include <opencv2/sfm.hpp>
#include <opencv2/sfm/reconstruct.hpp>
using namespace cv;
using namespace cv::xfeatures2d;
using namespace cv::sfm;
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::vector<cv::Point2d> matchPoints_left, matchPoints_right;
Mat F, inlier;
for (int i = 0; i<matches.size(); i++) {
float x = keypoints1[matches[i].queryIdx].pt.x;
float y = keypoints1[matches[i].queryIdx].pt.y;
matchPoints_left.push_back(cv::Point2f(x,y));
x = keypoints2[matches[i].trainIdx].pt.x;
y = keypoints2[matches[i].trainIdx].pt.y;
matchPoints_right.push_back(cv::Point2f(x,y));
}
//double result = sfm::fundamentalFromCorrespondences8PointRobust(matchPoints_left, matchPoints_right, 2.0, F, inlier, 1e-3);
waitKey();
return 0;
}
#else
int main()
{
std::cout << "This tutorial code needs the xfeatures2d contrib module to be run." << std::endl;
return 0;
}
#endif