Hello guys! Thank you for reading my question.
I use VS Code to write my scripts in Python 3.
My objective is to match two images. One image is isolated (needle) and another one is within a bigger image (haystack). The needle image is not an exact match to the one in the haystack image, but they are similar. The image in the haystack may be smaller, different color or rotated, but they have a similar shape. A good example would be the image found in one of the tutorials:
https://docs.opencv.org/master/Feature_FlannMatcher_Result_ratio_test.jpg
After trying out the tutorials, I learned that a module called features2D is needed in all of the algorythms (SIFT, SURF, AKAZE, ORB). However, this module seems to be disabled. I have tried to install it for days with no success. I think it has something to do with SIFT being patented.
Can anyone point me in the right direction?:
Is it possible to install this module in VS Code? Are there other alternatives?
Thanks you for your time.