I have applied SIFT on one image but two times ,example:
[image1, descript1, location1] = sift('book.pgm'); [image2, descript2, location2] = sift('book.pgm');
after matching function it will show all points are matching, I want to eliminate all the auto matches, i.e. the match of a point with itself.
In the image some areas are copy-pasted, I want to show only that matched points.
Anybody have suggestions how to do it? Thanks