-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsave_video.py
More file actions
149 lines (92 loc) · 4 KB
/
save_video.py
File metadata and controls
149 lines (92 loc) · 4 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# ===================================================================
# Example : save video from live camera stream rom an attached
# web camera by not assigning path to a video file.
# Author : Amir Atapour Abarghouei, amir.atapour-abarghouei@durham.ac.uk
# Copyright (c) 2024 Amir Atapour Abarghouei
# based on : https://github.com/tobybreckon/python-examples-ip/blob/master/skeleton.py
# License : LGPL - http://www.gnu.org/licenses/lgpl.html
# ===================================================================
import cv2
import argparse
import math
import numpy as np
# ===================================================================
keep_processing = True
# parse command line arguments for camera ID or video file
parser = argparse.ArgumentParser(
description='Save video file to disk from camera stream')
parser.add_argument(
"--camera",
type=int,
help="specify camera to use",
default=0)
args = parser.parse_args()
# ===================================================================
# define video size
video_width = 640
video_height = 480
# define video capture object
print("Starting camera stream")
cap = cv2.VideoCapture()
# define display window name
window_name = "Live Camera -> Video File" # window name
# define video writer (video: 640 x 480 @ 25 fps)
fourcc = cv2.VideoWriter_fourcc('M', 'J', 'P', 'G')
output = cv2.VideoWriter('output.avi', fourcc, 25.0, (video_width, video_height))
# capture from attached H/W camera
if ((cap.open(args.camera))):
# create window by name (note flags for resizable or not)
cv2.namedWindow(window_name, cv2.WINDOW_NORMAL)
# add some track bar controllers for settings for gaussian filter
while (keep_processing):
# if video file or camera successfully open then read frame from video
if (cap.isOpened):
ret, frame = cap.read()
# when we reach the end of the video (file) exit cleanly
if (ret == 0):
keep_processing = False
continue
# start a timer (to see how long processing and display takes if needed)
start_t = cv2.getTickCount()
# *******************************
# do any processing here
# resize the video to the size defined at the top of the program
frame2 = cv2.resize(
frame,
(video_width,
video_height),
interpolation=cv2.INTER_CUBIC)
output.write(frame2)
# *******************************
# display image
cv2.imshow(window_name, frame)
# stop the timer and convert to ms. (to see how long processing and
# display takes)
stop_t = ((cv2.getTickCount() - start_t) /
cv2.getTickFrequency()) * 1000
# start the event loop - essential
# cv2.waitKey() is a keyboard binding function (argument is the time in
# ms). It waits for specified milliseconds for any keyboard event.
# If you press any key in that time, the program continues.
# If 0 is passed, it waits indefinitely for a key stroke.
# (bitwise and with 0xFF to extract least significant byte of
# multi-byte response)
# wait 40ms or less depending on processing time taken (i.e. 1000ms /
# 25 fps = 40 ms)
key = cv2.waitKey(max(2, 40 - int(math.ceil(stop_t)))) & 0xFF
# It can also be set to detect specific key strokes by recording which
# key is pressed
# e.g. if user presses "x" then exit
if (key == ord('x')):
keep_processing = False
# close all windows
cv2.destroyAllWindows()
# Release everything when the job is finished
cap.release()
output.release()
else:
print("No video file specified or camera connected.")
# ===================================================================
# Author : Amir Atapour-Abarghouei
# Copyright (c) 2024 Dept Computer Science, Durham University, UK
# ===================================================================