is cv2.pyd incorrectly build in Ms VS2012?

asked 2015-04-17 10:21:44 -0600

updated 2015-04-17 10:26:08 -0600

berak gravatar image

Hi
I have some problems building openCv 3.0 with python 3 bindings. After several attempts with CMaKE I was able to successfully build openCv with VS 2012. I also built install with no errors. However though I can import OpenCV I only got these items when issuing a "dir" command

import OpenCV as cv In[19]: dir(cv) Out[19]: ['__doc__', '__loader__', '__name__', '__package__', '__path__', '__spec__']

I´m running Windows 8.1 , 64 bits VS 21012 and WinPython 3.4.3. For debug libraries i used python34.pdb downloades from https://www.python.org/downloads/rele...

Was was wrong with the building ? Thank you

edit retag flag offensive close merge delete

Comments

1

try import cv2 (there is neither an OpenCV nor a cv module)

berak gravatar imageberak ( 2015-04-17 10:24:16 -0600 )edit