I'm trying to use SIFT and SURF.
On my laptop I have OpenCV version= 4.5.1.48 and also added OpenCV-contrib-python of version 4.5.1.48
I'm getting an error following the documentation SIFT works perfectly after following documentation but SURF isn't working and giving me error for following codes
code 1
surf = cv.xfeatures2d.SURF_create()
AttributeError: module 'cv2.cv2' has no attribute 'xfeatures2d'
code 2
surf = cv2.SURF_create()
AttributeError: module 'cv2.cv2' has no attribute 'SURF_create'
After reading many answers on Stack Overflow I changed version of OpenCV and did many things but nothing is working for me
I read about the patent expiring too but nothing is working in my case pls tell me if im wrong somewhere
OpenCV version= 4.5.1.48
this is probably from pypi, and does not contain any "nonfree" code
(SURF is still patented, if you absolutely need that, you have to build from src (with contrib modules), using the OPENCV_ENABLE_NONFREE=ON cmake flag)
however, since the SIFT patent expired last year, use that instead
sift = cv2.SIFT_create() # it's in main, no more xfeatures2d
btw, dont install both opencv-python, and opencv-contrib-python, only the latter (else the former will "shadow" it, and you cannot use contrib modules. this is the reason for AttributeError: module 'cv2.cv2' has no attribute 'xfeatures2d'
)