目前有这样的需求:使用Opencv读取实时视频流数据,做算法处理,因为算法本身处理速度有限,因此会产生每次读取到的帧不是当前帧的问题,体验很差。例如:import cv2cap=cv2.VideoCaptrue("rtsp://...")while trueret,frame=cap.read()if ret=True:process(frame)#此处为图像处理的代码cv2.imshow("test",frame)if ch...