Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

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)