how to play video using python(opencv)

Publié le: 02 février 2020
sur la chaîne: Deeper Coders
148
1

import cv2
import numpy as np

Create a VideoCapture object and read from input file
cap = cv2.VideoCapture('Wildlife.wmv')

Check if camera opened successfully
if (cap.isOpened()== False):
print("Error opening video file")

Read until video is completed
while(cap.isOpened()):

Capture frame-by-frame
ret, frame = cap.read()
if ret == True:

Display the resulting frame
cv2.imshow('Frame', frame)

Press Q on keyboard to exit
if cv2.waitKey(25) & 0xFF == ord('q'):
break

Break the loop
else:
break

When everything done, release
the video capture object
cap.release()

Closes all the frames
cv2.destroyAllWindows()


Sur cette page du site, vous pouvez voir la vidéo en ligne how to play video using python(opencv) durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Deeper Coders 02 février 2020, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 148 fois et il a aimé 1 téléspectateurs. Bon visionnage!