python和opencv环境搭建_python与opencv开发环境搭建(转载)

首先先说本开发环境是在windows xp的环境下进行搭建的。

在搭建的过程中需要保证这三个条件:

1.python需要安装python-numpy模块,不然即使找到了cv模块也不能够运行。而且会出现“ImportError:

numpy.core.multiarray failed to import”错误。

在装这个模块的实现需要保证python的版本与numpy的版本相一致,例如当前numpy的版本最高支持python2.6,因此如果你的python版本不是2.6的话则安装不了该模块。

2.python的版本需要与OpenCV的版本相一致,否则导入cv模块会出错。

比如你安装了python2.6版本,则OpenCV需要安装2.0的版本,2.2的版本就不行。

对于执行import cv出现的找不到相关模块的问题其实在OpenCV本身的网站上就有说明:

“Python 2.6 bindings for OpenCV are included within the package,

but not installed. You can copy the subdirectory

opencv/Python2.6/Lib/site-packages into the respective directory of

the Python installation. This procedure will be automated in the

next OpenCV update. ”

即我们只需要把OpenCV安装目录下的Python2.6/Lib/site-packages中的文件拷贝到Python2.6安装目录下的Lib/site-packages即可。

采用以上的方法,Python与OpenCV的开发环境搭配成功!

你可能感兴趣的:(python和opencv环境搭建_python与opencv开发环境搭建(转载))