Python OpenCV VideoCapture不会显示网络摄像头图像

我正在使用Python OpenCV,并希望将网络摄像头图像捕获到一帧,但输出始终显示此图像而不是我的网络摄像头图像。

产量

该脚本如下所示:

import numpy as np
import cv2

cap = cv2.VideoCapture(0)

while(True):
    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()

有谁知道这个问题? 谢谢。


添加一行以将帧图像写入文件,JPG或PNG。 它适用于我的电脑。

if cv2.waitKey(1) & 0xFF == ord('q'):
    cv2.imwrite('capframe.jpg',frame)
    break

您是否验证您的网络摄像头的图像捕捉是否通过其或其他软件工作?

链接地址: http://www.djcxy.com/p/80983.html

上一篇: Python OpenCV VideoCapture won't show webcam images

下一篇: Python/OpenCV capture image from webcam not working