opencv读取视频图像
import cv2video = cv2.VideoCapture(0)while True: ret, frame = video.read() print(ret) #image = cv2.resize(frame, (416, 416)) #image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB) #cv2.imshow("results", image) cv2.imshow("re