创建一个VideoCapture对象 # 一帧一帧读取视频 gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)# 对每一帧做处理,设置为灰度图 cv2.imshow('frame',gray) # 显示结果 if cv2.waitKey(1) & 0xFF == ord('q'): # 按q停止