Hello,
I have a lot of images, let's say for example 3 images who I extract Keypoints and descriptors by SIFT :
Image 1: K1 + D1 Image 2: K2 + D2 Image 3: K3 + D3
k: for keypoints and D : for descriptors.
And I have an image X (who has kx and Dx) and I want to find if the key pointsand the descriptors in the image x are similar to the K&D in the image 1, 2 or 3. My goal is to calculate registration between image x and (Image 1 or Image 2 or Image3). I thought about using KNN but I don't know if it's the best solution and if it's goona work with two vectors K and D.
I need your help and thak you.