Facecam 视频无法使用 cv2.VideoCapture() 打开并且无法读取

Posted

技术标签:

【中文标题】Facecam 视频无法使用 cv2.VideoCapture() 打开并且无法读取【英文标题】:Facecam Video does not open with cv2.VideoCapture() and cannot be read 【发布时间】:2021-04-06 03:10:31 【问题描述】:

我是 OpenCV 新手,刚开始学习 我使用的是 macOS,python 版本 3.8.1

我的代码:

import cv2
# takes facecam video
cap = cv2.VideoCapture(-1)

while True:
    # Capture frame-by-frame
    ret, frame = cap.read()
    if cap.isOpened() == True:
        # Our operations on the frame come here
        gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

        # Display the resulting frame
        cv2.imshow('frame',gray)
        if cv2.waitKey(1) & 0xFF == ord('q'):
            break
    else:
         cap.open(-1)

    # When everything done, release the capture
    cap.release()
    cv2.destroyAllWindows()

【问题讨论】:

【参考方案1】:

这对我有用

import cv2
cap = cv2.VideoCapture(0)

while True:
    ne, frame = cap.read()

    cv2.imshow("Webcam Capture", frame)
    

    if cv2.waitKey(1) & 0xFF == ord("A"):
        break


cap.release()
cv2.destroyAllWindows()

【讨论】:

以上是关于Facecam 视频无法使用 cv2.VideoCapture() 打开并且无法读取的主要内容,如果未能解决你的问题,请参考以下文章

如果无法使用 Javascript/jQuery 加载视频,则隐藏视频容器

无法使用 QMediaPlayer 播放某些视频

使用 AVPlayer 时为啥我的视频无法在我的 UIView 中播放

在android中使用listview无法正常播放视频

无法使用opencv打开视频

无法使用 React 加载本地视频