1. 程式人生 > >學習OpenCV-Python——視訊讀寫

學習OpenCV-Python——視訊讀寫

#0表示讀取攝像頭,輸入視訊檔案路徑可以讀取視訊檔案
capture = cv2.VideoCapture(0)
ret, frame = capture.read()
while ret:
    #1表示左右翻轉,-1表示上下翻轉
    frame = cv2.flip(frame,1)
    cv2.imshow('video',frame)
    ret, frame = capture.read()
    #按下Esc鍵即退出
    if cv2.waitKey(10) == 27:
        break