Can't use SURF, SIFT in OpenCV
I'm trying a simple thing like detector = cv2.SIFT() and get this bad error detector = cv2.SIFT() AttributeError: 'module' object has no attribute 'SIFT' I do not understand that because cv2 is installed. cv2.__version__ is $Rev: 4557 $ My system is Ubuntu 12.04. Maybe someone has got the same problem and could help me. EDIT: Long story short, testypypypy.py : import cv2 detector = cv2.SIFT() ERROR: Traceback (most recent call last): File "testypypy.py", line 3, in <module> detector = cv2.SIFT() AttributeError: 'module' object has no attribute 'SIFT If I take SURF it works because SURF is in