I'm curious to how one could take a snap shot of a webcam without LED light being turned on in opencv python.
(我很好奇如何在opencv python中不打开LED灯的情况下拍摄网络摄像头快照。)
import cv2
webcam = cv2.VideoCapture(1)
check, frame = webcam.read()
cv2.imwrite('img.jpg', img=frame)
webcam.release()
ask by Andr4x-32 translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…