安装cv2失败ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)ERRO

python中的cv2库主要用于图片的读入和一些操作。

安装

在安装cv2的时候,如果报ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)ERRO这个错,就是在安装是要安装opencv-python,而不是直接安装cv2

pip install opencv-python #直接安装
pip install opencv-python==3.3.0.10 -i https://pypi.doubanio.com/simple #安装指定版本

cv2的基本用法

读入图像

使用函数cv2.imread(filepath,flags)

import cv2
img=cv2.imread('1.jpg',cv2.IMREAD_GRAYSCALE)

显示图像

cv2.imshow(wname,img)

cv2.imshow('image',img)
cv2.waitKey(0) #等待键盘输入,单位为毫秒
cv2.destroyAllWindows() #销毁所有窗口
cv2.destoryWindow(wname) #销毁指定窗口

保存图片

cv2.imwrite(file,img,num)

  • cv2.IMWRITE_JPEG_QUALITY类型为 long ,必须转换成 int
  • cv2.IMWRITE_PNG_COMPRESSION, 从0到9 压缩级别越高图像越小
cv2.imwrite('1.png',img,[int(cv2.IMERITE_JPEG_QUALITY),95])
cv2.imwrite('1.png',img,[int(cv2.IMWRITE_PNG_COMPRESSION),9])

复制图片

imgcopy=img.copy()

你可能感兴趣的:(opencv,python,计算机视觉)