Hi! I recently installed OpenCV. It seems to works correctly in any python shell (idle, or python started on the command line), but in spyder I get the following:
>> import cv2
ImportError: DLL load failed: La procédure spécifiée est introuvable.
(sorry for the french, rough translation would be "Specified procedure could not be found")
--
You received this message because you are subscribed to the Google Groups "spyder" group.
To unsubscribe from this group and stop receiving emails from it, send an email to spyderlib+...@googlegroups.com.
To post to this group, send email to spyd...@googlegroups.com.
Visit this group at http://groups.google.com/group/spyderlib?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
/usr/lib/python2.7/site-packages/cv.py
/usr/lib/python2.7/site-packages/cv2.soA shot in the dark: did you build OpenCV with the Qt backend? The Qt DLLs provided by PyQt4 might be incompatible with your OpenCV build.
Using OpenCV from http://www.lfd.uci.edu/~gohlke/pythonlibs/#opencv works for me with Spyder 2.2
Christoph