gpt4 book ai didi

python - 打开 cv 关闭相机

转载 作者:行者123 更新时间:2023-12-02 15:50:00 26 4
gpt4 key购买 nike

我正在使用 OpenCv 从网络摄像头捕获图像。

它工作正常,我只是不知道如何关闭相机。

from cv2 import *
# initialize the camera
cam = VideoCapture(0) # 0 -> index of camera
s, img = cam.read()
if s: # frame captured without any errors
namedWindow("cam-test",CV_WINDOW_AUTOSIZE)
imshow("cam-test",img)`
waitKey(0)
destroyWindow("cam-test")
imwrite("testfilename.jpg",img) #save image
cam.release

最佳答案

我想你只是失踪了 ()cam.release

关于python - 打开 cv 关闭相机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46821936/

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