Created
March 28, 2021 03:44
-
-
Save bml1g12/2074c58f0c414d456b78bef12deb48d6 to your computer and use it in GitHub Desktop.
Typical video reading script in Python using OpenCV
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
cap = cv2.VideoCapture("myvideo.mkv") | |
while(True): | |
# Capture frame-by-frame | |
ret, frame = cap.read() | |
if not ret: | |
break | |
# Display the resulting frame | |
cv2.imshow('frame', frame) | |
if cv2.waitKey(1) & 0xFF == ord('q'): | |
break | |
# When everything done, release the capture | |
cap.release() | |
cv2.destroyAllWindows() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment