【OpenCV】Python打開攝像頭並保存一張圖

使用方法:運行程序,會顯示當前攝像頭的圖像,按q關閉窗口同時保存一張照片python import cv2 cap = cv2.VideoCapture(0) while(1): # 得到圖片 ret, frame = cap.read() # 展現圖片 cv2.imshow("capture", frame) if cv2.waitKey(1) & 0
相關文章
相關標籤/搜索