I\'m trying to add the xfeatures2d module from opencv_contrib to an existing OpenCV/Python project.
xfeatures2d
opencv_contrib
I\'ve downloaded the latest version of
Another possibility (and the easiest one I found!) is to install the 2.4.9 release which already include SIFT and SURF algorithm. You just have to do then
import cv2 sift = cv2.SIFT() (...)