树莓派(六):调取摄像头
import cv2cap = cv2.VideoCapture(0) # 打开摄像头while True: ret, frame = cap.read() # 读摄像头 cv2.imshow("video", frame...