ubuntun安装python-opencv 3.3版本命令
时间: 2023-11-20 22:06:41 浏览: 127
在 Ubuntu 上安装 Python 的 OpenCV 3.3 版本,可以按照以下步骤进行:
1. 更新 Ubuntu 软件包列表:
```
sudo apt-get update
```
2. 安装 OpenCV 依赖包:
```
sudo apt-get install build-essential cmake git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev
```
3. 安装 Python 依赖包:
```
sudo apt-get install python-dev python-numpy python3-dev python3-numpy
```
4. 克隆 OpenCV 3.3 源码:
```
git clone https://github.com/opencv/opencv.git
cd opencv
git checkout 3.3.0
```
5. 创建一个构建目录并进入它:
```
mkdir build
cd build
```
6. 配置 OpenCV:
```
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D WITH_TBB=ON -D WITH_V4L=ON -D WITH_QT=ON -D WITH_OPENGL=ON ..
```
7. 编译和安装 OpenCV:
```
make -j4
sudo make install
```
8. 安装 Python 绑定:
```
cd ../
git clone https://github.com/opencv/opencv_contrib.git
cd opencv_contrib
git checkout 3.3.0
cd ../
cd build
cmake -D OPENCV_EXTRA_MODULES_PATH=../opencv_contrib/modules ..
make -j4
sudo make install
```
9. 安装 Python 绑定:
```
sudo apt-get install python-opencv
```
完成以上步骤后,你就可以在 Python 中使用 OpenCV 3.3 了。
阅读全文