OpenCV3 Python 语言实现在运用camera.release()遇到的坑

在使用OpenCV    camera.release()函数中遇到的一个坑,坑了我N久时间。

出现错误代码的源代码:

import cv2
cap = cv2.VideoCapture(0)
while True:
    ret,frame = cap.read()
    cv2.imshow("camera",frame)
    k = cv2.waitKey(1)&0xff
    if k==27:
        break
    cap.release()
    cv2.destroyAllWindows()

在运行这段代码时,会报错:

C:\Users\John\AppData\Local\Programs\Python\Python36-32\python.exe G:/Python_work/test/cameraRlease.py
OpenCV(3.4.1) Error: Assertion failed (size.width>0 && size.height>0) in cv::imshow, file D:\Build\OpenCV\opencv-3.4.1\modules\highgui\src\window.cpp, line 364
Traceback (most recent call last):
  File "G:/Python_work/test/cameraRlease.py", line 5, in <module>
    cv2.imshow("camera",frame)
cv2.error: OpenCV(3.4.1) D:\Build\OpenCV\opencv-3.4.1\modules\highgui\src\window.cpp:364: error: (-215) size.width>0 && size.height>0 in functi

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值