I have read many questions about matching one image with a number of images using SIFT and Brute-Force matching like this and this. Is it possible to do many-with-one kind of matching? What I would like to do is the following.
Till now I am successful till step 3 and stuck at that point.
I am using Opencv 2.7.12 and python 2.7. Since there is no drawMatches
in this version, I am using this implementation.
Step 1: Run RANSAC on the matches you get from the BF-Match.
Step 2: test the validity/goodness of the homography matrix like here
Step 3: If the homography matrix is good, transform.
Ofcourse Euclidean should work too