使用OpenCV +裁剪图像

时间:2019-05-17 15:45:30

标签: python opencv

我想使用OpenCV(使用Python)裁剪图像

我尝试使用此处显示的代码。但是,它给出了一些错误。

import cv2
img = cv2.imread("paint-horse-running-in-field.jpg")
crop_img = img[y:y+h, x:x+w]
cv2.imshow("paint-horse-running-in-field.jpg", crop_img)
cv2.waitKey(0)

The error:  import cv2

ModuleNotFoundError:没有名为“ cv2”的模块

1 个答案:

答案 0 :(得分:0)

您需要先将opencv软件包安装到计算机上。

如果您的计算机上有pip,则可以在命令提示符下运行它:

pip install opencv-python

然后您将能够导入cv2模块