cap = cv2.VideoCapture(0)
ret, frame = cap.read()
cv2.imshow("name", frame)报出如下错误
error: ..\..\..\modules\highgui\src\window.cpp:261: error: (-215) size.width>0 && size.height>0 in function cv::imshow
在第一句下面加上time.sleep(2)后可解决
cap = cv2.VideoCapture(0)
ret, frame = cap.read()
cv2.imshow("name", frame)报出如下错误
error: ..\..\..\modules\highgui\src\window.cpp:261: error: (-215) size.width>0 && size.height>0 in function cv::imshow
在第一句下面加上time.sleep(2)后可解决
本文标题:opencv学习
本文链接:https://www.haomeiwen.com/subject/sxeyeftx.html
网友评论