gpt4 book ai didi

python - 没有名为 cv2 的模块

转载 作者:太空宇宙 更新时间:2023-11-04 07:38:57 27 4
gpt4 key购买 nike

我遇到了错误

No module named cv2

您能否指导我应该输入什么命令来安装 CV2(sudo qpt-get install ..?)谢谢

import numpy as np
import cv2

cap = cv2.VideoCapture('vtest.avi')

while(cap.isOpened()):
ret, frame = cap.read()

gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

cv2.imshow('frame',gray)
if cv2.waitKey(1) & 0xFF == ord('q'):
break

cap.release()
cv2.destroyAllWindows()

最佳答案

使用pip命令行:

pip install opencv-python

关于python - 没有名为 cv2 的模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27606916/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com