Python + OpenCV实战:从摄像头录制视频的操作方法打开摄像头 import cv2capture = cv2.VideoCapture(0)while True:ret, frame = capture.read()frame = cv2.flip(fram1月前100