■ VideoCapture 클래스를 사용해 동영상 파일을 재생하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import cv2 videoCapture = cv2.VideoCapture("video.mp4") while(videoCapture.isOpened()): result, frameNDArray = videoCapture.read() cv2.imshow("video", frameNDArray) if cv2.waitKey(1) & 0xFF == ord("q"): break videoCapture.release() cv2.destroyAllWindows() |