在Ubuntu系统下安装和配置Python-OpenCV,可以按照以下步骤进行:
首先,需要安装一些必要的依赖包。在终端中输入以下命令来安装这些依赖:
sudo apt update
sudo apt install build-essential cmake git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev
接下来,安装Python-OpenCV库。可以通过两种方式安装:
如果系统已经安装了Python和pip,可以直接使用pip来安装OpenCV:
pip install opencv-python
如果需要安装特定版本的OpenCV,或者想要从源码进行编译,可以按照以下步骤操作:
git clone https://github.com/opencv/opencv.git
git clone https://github.com/opencv/opencv_contrib.git
cd opencv
mkdir build
cd build
cmake -D CMAKE_BUILD_TYPE=RELEASE \
-D CMAKE_INSTALL_PREFIX=/usr/local \
-D OPENCV_EXTRA_MODULES_PATH=../../opencv_contrib/modules \
-D PYTHON3_EXECUTABLE=$(which python3) \
-D PYTHON3_INCLUDE_DIR=$(python3 -c "from distutils.sysconfig import get_python_inc; print(get_python_inc())") \
-D PYTHON3_PACKAGES_PATH=$(python3 -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())") \
-D BUILD_opencv_python2=OFF \
-D BUILD_opencv_python3=ON \
..
make -j$(nproc)
sudo make install
最后,可以通过编写一个简单的Python脚本来验证OpenCV是否安装成功。例如,创建一个名为test_opencv.py的文件,内容如下:
import cv2
# 读取图像
img = cv2.imread('test.jpg')
# 显示图像
cv2.imshow('image', img)
# 等待按键,然后关闭窗口
cv2.waitKey(0)
cv2.destroyAllWindows()
运行这个脚本,如果能够正确读取并显示图像,就说明OpenCV已经成功安装并配置好了。