gpt4 book ai didi

python - 在 python 中使用 OpenCV 时视频不刷新

转载 作者:行者123 更新时间:2023-12-02 17:47:09 28 4
gpt4 key购买 nike

我在 python 中使用 openCV 模块,用于从笔记本电脑的网络摄像头捕获视频。我得到了一些不寻常的行为。以下是我正在使用的代码

class bnw_video() :

def __init__(self) :

self.cap = cv2.VideoCapture(0)
self.cap.set(3,320)
self.cap.set(4,240)
self.start_video()

def start_video(self) :

while(True) :
ret,frame = self.cap.read(0)
cv2.imshow('frame',frame)
time.sleep(0)

bnw_video()

我正在使用上面的代码来显示网络摄像头主动捕获的视频。当 time.sleep 值为 0 时,视频显示完美。但如果 time.sleep 的值为 0.1,则视频只显示一帧,然后停止。
我不明白为什么会这样。

最佳答案

您应该使用 cv2.waitKey(delay_in_ms) , 而不是 time.sleep(...) .

来自 OpenCV doc :

This function is the only method in HighGUI that can fetch and handle events, so it needs to be called periodically for normal event processing unless HighGUI is used within an environment that takes care of event processing.



如果您不调用 waitKey ,windows 内容(由 imshow 创建)不会被刷新。

关于python - 在 python 中使用 OpenCV 时视频不刷新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32970418/

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