I'm trying to install OpenCV in python 3.3.2 and Ubuntu 12.04. I've followed this tutorial
but I can't seem to make it work. When I try to 'import cv2' it says there is no module with that name
Any help with this issue? Thanks.
I'm trying to install OpenCV in python 3.3.2 and Ubuntu 12.04. I've followed this tutorial
but I can't seem to make it work. When I try to 'import cv2' it says there is no module with that name
Any help with this issue? Thanks.
In ubuntu, you can type command: sudo apt-get install python-opencv which will provide you compatible version of opencv to your python.
I had the same problem in windows. But then I copied cv.pyd from opencv/build/python/2.7/x86 instead of opencv/build/python/2.7/x64. It works if you do so. I hope it would be helpful.