forked from wynn4/vision_landing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecord_webcam.py
More file actions
36 lines (29 loc) · 872 Bytes
/
record_webcam.py
File metadata and controls
36 lines (29 loc) · 872 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
import numpy as np
import cv2
cap = cv2.VideoCapture(1)
# Define the codec and create VideoWriter object
#fourcc = cv2.cv.CV_FOURCC(*'DIVX')
#out = cv2.VideoWriter('output.avi',fourcc, 20.0, (640,480))
#out = cv2.VideoWriter('output.avi', -1, 15.0, (640,480)) #15fps
#Create VideoWriter object
fps = 15
fourcc = cv2.cv.CV_FOURCC('x', 'v', 'i', 'd')
out = cv2.VideoWriter()
success = out.open('test2.avi',fourcc,fps,(640,480),True)
print success
while(cap.isOpened()):
ret, frame = cap.read()
if ret==True:
#frame = cv2.flip(frame,0)
# write the flipped frame
out.write(frame)
cv2.imshow('frame',frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
else:
print 'failed to receive frame'
break
# Release everything if job is finished
cap.release()
out.release()
cv2.destroyAllWindows()