I want to have Python 3 support in OpenCV, so I read that I need to build my own version with it.
I downloaded OpenCV 3 beta from SourceForge, then I used CMake to create a project, and then compiled it with Visual Studio. It has created lot's of files (not actually the same structure as in precompiled folder from Sourceforge), and also a cv2.pyd. I placed this file into Python34\lib\site-packages, and tried import cv2 in python console, but it says Traceback (most recent call last): File "", line 1, in ImportError: DLL load failed: Module not found.
What I did wrong? Thanks.