thaint2901's picture
init
f3261a0
raw
history blame contribute delete
292 Bytes
import cv2
cap = cv2.VideoCapture("/research/GAN/git/CVPR2022-DaGAN/assets/video1.mp4")
while True:
ret, frame = cap.read()
if frame is None:
break
cv2.imshow("output", frame)
key = cv2.waitKey(1) & 0xff
if key == ord("q"):
break
cv2.destroyAllWindows()