注意:安装opencv之前需要先安装numpy,matplotlib等
一、安装方法
方法一、在线安装
1.先安装opencv-python
pip install opencv-python --user
我的python版本是3.6.8,可以看到opencv安装的默认版本是 opencv_python-4.1.0.25-cp36-cp36m-win_amd64.whl
2.再安装opencv-contrib-python
pip install opencv-contrib-python --user
备注1:此种方法安装后,import cv2 as cv后,代码可以正常运行,但是
1