赞
踩
ret, frame = cap.read()返回值含义: 参数ret 为True 或者False,代表有没有读取到图片 第二个参数frame表示截取到一帧的图片
camera = cv2.VideoCapture(0) ret, frame = camera.read()