-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideo_cap.py
More file actions
66 lines (53 loc) · 1.37 KB
/
video_cap.py
File metadata and controls
66 lines (53 loc) · 1.37 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import numpy as np
import cv2
import sys
import time
file_name = './resources/output.avi'
cap = cv2.VideoCapture(0)
if not cap.isOpened():
print 'File can not be opened!'
sys.exit(0)
w = cap.get(3)
h = cap.get(4)
print 'h is %d, w is %d' % (h, w)
"""
fourcc = cv2.cv.CV_FOURCC('D', 'I', 'V', 'X')
# If I use fourcc as DIVX, the video file will be empty, maybe encoder not be installed
out = cv2.VideoWriter(file_name, 1, 25.0, (640, 480), 1)
while True:
ret, frame = cap.read()
if ret:
#gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
frame = cv2.flip(frame, 1)
font = cv2.FONT_HERSHEY_SIMPLEX
cv2.putText(frame, 'James', (10, 100), font, 1, (0,0,255), 2 )
out.write(frame)
cv2.imshow('frame', frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
else:
break
cap.release()
out.release()
cv2.destroyAllWindows()
"""
cap = cv2.VideoCapture(file_name)
if not cap.isOpened():
print 'Video File can not be opened!'
sys.exit(0)
last_frame = None
while True:
ret, frame = cap.read()
if ret:
last_frame = frame
cv2.imshow(file_name, frame)
if cv2.waitKey(40) & 0xFF == ord('q'):
break
else:
break
cap.release()
cv2.destroyAllWindows()
cv2.imshow('test', last_frame)
cv2.waitKey(0)
cv2.imwrite('./test.jpg', last_frame)
cv2.destroyAllWindows()