First time here? Check out the FAQ!
answered 2014-04-01 08:11:47 -0600
The tutorial works perfectly fine. Minimal example:
import cv2 img = cv2.imread('<path-to-your-image>', cv2.CV_LOAD_IMAGE_GRAYSCALE) my_sift = cv2.SIFT() kp = my_sift.detect(img) kp, des = my_sift.compute(img, kp)