In my opencv project, I want to detect copy-move fake in image. I know how to use opencv FLANN to map functions in 2 different images, but I'm so confused about how to use FLANN to detect copy-move fakes in an image.
P.S1: I get syntactic key points and image descriptors and get stuck in using the match matching class.
P.S2: the type of object matching is not important to me.
Thanks in advance.
Update:
These drawings are an example of what I need.


And there is a code that corresponds to the functions of two images and does something similar on two images (not one), the code is in the opencv format in android, as shown below:
vector<KeyPoint> keypoints; Mat descriptors; // Create a SIFT keypoint detector. SiftFeatureDetector detector; detector.detect(image_gray, keypoints); LOGI("Detected %d Keypoints ...", (int) keypoints.size()); // Compute feature description. detector.compute(image, keypoints, descriptors); LOGI("Compute Feature ..."); FlannBasedMatcher matcher; std::vector< DMatch > matches; matcher.match( descriptors, descriptors, matches ); double max_dist = 0; double min_dist = 100; //-- Quick calculation of max and min distances between keypoints for( int i = 0; i < descriptors.rows; i++ ) { double dist = matches[i].distance; if( dist < min_dist ) min_dist = dist; if( dist > max_dist ) max_dist = dist; } printf("-- Max dist : %f \n", max_dist ); printf("-- Min dist : %f \n", min_dist ); //-- Draw only "good" matches (ie whose distance is less than 2*min_dist, //-- or a small arbitary value ( 0.02 ) in the event that min_dist is very //-- small) //-- PS.- radiusMatch can also be used here. std::vector< DMatch > good_matches; for( int i = 0; i < descriptors.rows; i++ ) { if( matches[i].distance <= max(2*min_dist, 0.02) ) { good_matches.push_back( matches[i]); } } //-- Draw only "good" matches Mat img_matches; drawMatches( image, keypoints, image, keypoints, good_matches, img_matches, Scalar::all(-1), Scalar::all(-1), vector<char>(), DrawMatchesFlags::NOT_DRAW_SINGLE_POINTS ); //-- Show detected matches // imshow( "Good Matches", img_matches ); imwrite(imgOutFile, img_matches);
source share