-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathshow_vid.py
More file actions
37 lines (28 loc) · 768 Bytes
/
show_vid.py
File metadata and controls
37 lines (28 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import cv2
import numpy as np
def show(img):
cv2.imshow('FRAME', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
#read from camera
cap = cv2.VideoCapture('line_vid1.h264')
# Check if camera opened successfully
if (cap.isOpened()== False):
print("Error opening video stream or file")
# Read until video is completed or the camera malfunctions!
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()