Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've seen this question answered to Linux operating systems, but I'm working with Windows (VS 2010), and I can't find a solution.

This is my code:

import numpy
import cv2

campo = cv2.imread("fotograma.png")
balon = cv2.imread("balon.png")

#SIFT detector
sif = cv2.SIFT()

I'm using Python 2.7, as I said, with VS 2010, but even if I try typping my code in the Python interpreter, it shows me the same error message. The funny thing is, when I type cv2.SI in my editor, it suggests me the SIFT function, so it looks to recognize it.

Please help me.

share|improve this question
    
have you found solution to it? –  shababhsiddique Feb 24 at 5:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.