I'm trying to instantiate a SURF object in python using OpenCV as described here but this happens:
>>> import cv2
>>> cv2.__version__
'2.4.0'
>>> cv2.SURF()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'SURF'
Does anyone know why this happens or if SURF is missing from the Python version of OpenCV?