Can I use OpenCV 3.2 installed from prebuilt binaries on Windows with Python 3.5 and C++?
I would like to program with OpenCV 3.2 with both C++ and Python 3.5, under Windows 10. Can I do it just installing OpenCV 3.2 from the pre-built binaries? Or must I build OpenCV from source?
Thanks!
afaik, the cv2.pyd that comes prebuilt there is for python2.7 only. the c++ libs are for vs2015 64bit exclusively. so, yea, if you need py3.5 support, or a different c++ compiler, -- there will be no way avoiding to build from src.