繁体   English   中英

如何在Windows上将Logitech Webcam C922 Pro与python链接

[英]How to link the logitech Webcam C922 pro with python on Windows

我试图将Logitech C922 Pro网络摄像头链接到Python并使用Windows从中读取,但是出现断言错误。 这是我正在使用的代码:

import cv2
import time
cap = cv2.VideoCapture(1)
cap.set(5, 60)

framecount = 0
prevMillis = 0

print(cap.get(5))

def fpsCount():
    global prevMillis
    global framecount
    millis = int(round(time.time() * 1000))
    framecount += 1
    if millis - prevMillis > 1000:
        print(framecount)
        prevMillis = millis 
        framecount = 0

while True:
    __, frame = cap.read()
    #frame = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
    #blur = cv2.blur(frame, (5, 5))
    #ret, thresh = cv2.threshold(blur, 170, 255, 0)
    cv2.imshow("Image", frame)


    fpsCount()    
    k = cv2.waitKey(1) & 0xff
    if k == 27:
        break

cap.release()
cv2.destroyAllWindows()

但是我得到的错误是:

cv2.imshow("Image", frame)
cv2.error: OpenCV(4.1.2) C:\projects\opencv-python\opencv\modules\highgui\src\window.cpp:376: error: (-215:Assertion failed) size.width>0 && size.height>0 in function 'cv::imshow'

您的代码很好,只需更改一行

更改此:

cap = cv2.VideoCapture(1)

对此:

cap = cv2.VideoCapture(0)

此行将完成您的工作:

cap = cv2.VideoCapture(0)

如果要从目录加载视频,请使用:

cap = cv2.VideoCapture('image_path')

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM