OpenCV - RobustMatcher using findHomography
问题 I've implement a Robust matcher found on the internet based on differents tests : symmetry test, Ratio Test and RANSAC test. It works well. I used then findHomography in order to have good matches. Here the code : RobustMatcher::RobustMatcher() : ratio(0.65f), refineF(true),confidence(0.99), distance(3.0) { detector = new cv::SurfFeatureDetector(400); //Better than ORB //detector = new cv::SiftFeatureDetector; //Better than ORB //extractor= new cv::OrbDescriptorExtractor(); //extractor= new