好,所以我对网络摄像头进行了一些基本的对象检测。我希望它不断更新(例如视频),但它显示的只是一张灰色图像和“无响应”。当我在matplotlib中显示图像时,它已经起作用了,但是现在不起作用了。这是代码:
import cv2
import matplotlib.pyplot as plt
import cvlib as cv
from cvlib.object_detection import draw_bbox
from time import sleep
camera_port = 0[enter image description here][1]
cam = cv2.VideoCapture(camera_port)
while True:
s, img = cam.read()
if not s:
break
bbox, label, conf = cv.detect_common_objects(img)
img = draw_bbox(img, bbox, label, conf)
cv2.imshow('Output', img)
图片:
我正在使用Windows和python 3.8。