gpt4 book ai didi

opencv - OpenCV程序有时会失败,并在其他时间起作用

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

我在2016 Macbook Pro上使用OpenCV程序,该程序需要打开网络摄像头。我已经看到,使用完全相同的代码,有时我的摄像头会打开一秒钟,然后结束,并且该程序将终止,即使我没有单击按钮即可终止。

while(1):
try:
ret, frame = cap.read()
frame = cv2.flip(frame, 1)
except:
pass
cv2.imshow('mask', mask)
cv2.imshow('frame', resized)

这些是我代码的相关部分,我想知道启动程序的方式是否有问题。

最佳答案

引用官方文档here:

Sometimes, cap may not have initialized the capture. In that case, this code shows error. You can check whether it is initialized or not by the method cap.isOpened(). If it is True, OK. Otherwise open it using cap.open().

关于opencv - OpenCV程序有时会失败,并在其他时间起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59683128/

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