Commit a5b58c00 authored by Maria Dimashova's avatar Maria Dimashova

updated user prompt and included headers

parent 0af4d09a
#include <highgui.h>
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/features2d/features2d.hpp"
#include <iostream>
using namespace cv;
......@@ -200,6 +200,10 @@ int main(int argc, char** argv)
cout << endl << "Mathes are filtered using homography matrix in case1 and case2 (if ransacReprojThreshold>=0)" << endl;
cout << "Example:" << endl;
cout << "./descriptor_extractor_matcher SURF SURF BruteForce CrossCheckFilter cola1.jpg cola2.jpg 3" << endl;
cout << endl << "Possible detectorType values: see in documentation on createFeatureDetector()." << endl <<
"Possible descriptorType values: see in documentation on createDescriptorExtractor()." << endl <<
"Possible matcherType values: see in documentation on createDescriptorMatcher()." << endl <<
"Possible matcherFilterType values: NoneFilter, CrossCheckFilter." << endl;
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment