-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathchange_framerate.py
More file actions
161 lines (103 loc) · 4.12 KB
/
change_framerate.py
File metadata and controls
161 lines (103 loc) · 4.12 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
150
151
152
153
154
155
156
157
158
159
160
161
# ===================================================================
# Example : change the framerate on a video file or live camera stream
# specified on the command line (e.g. python change_framerate.py video_file)
# or from 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
# License : LGPL - http://www.gnu.org/licenses/lgpl.html
# ===================================================================
import cv2
import argparse
# ===================================================================
keep_processing = True
# parse command line arguments for camera ID or video file
parser = argparse.ArgumentParser(
description='Change the framerate of camera/video sequence.')
parser.add_argument(
"--camera",
type=int,
help="specify camera to use",
default=0)
parser.add_argument(
'video_file',
metavar='video_file',
type=str,
nargs='?',
help='specify optional video file')
args = parser.parse_args()
# ===================================================================
# define video capture object
print("Starting camera stream")
cap = cv2.VideoCapture()
# define display window name
window_name = "Live Camera Input - Framerate" # window name
# if command line arguments are provided try to read video_file
# otherwise default to capture from attached H/W camera
if (((args.video_file) and (cap.open(str(args.video_file))))
or (cap.open(args.camera))):
cam_fps = int(cap.get(cv2.CAP_PROP_FPS))
# create window by name (note flags for resizable or not)
cv2.namedWindow(window_name, cv2.WINDOW_NORMAL)
# add some track bar controllers for settings
if(cam_fps > 20):
framerate = cam_fps - 5
else:
framerate = 1
cam_fps = 30
cv2.createTrackbar(
"FPS",
window_name,
framerate,
cam_fps,
lambda x:x)
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)
start_t = cv2.getTickCount()
# *******************************
# get parameter from track bar
framerate = cv2.getTrackbarPos("FPS", window_name)
# parameters for overlaying text labels on the displayed images
font = cv2.FONT_HERSHEY_COMPLEX
bottomLeftCornerOfText = (10, int(frame.shape[0])-15)
fontScale = 1
fontColor = (123,49,126)
lineType = 6
# overlay corresponding labels on the images
cv2.putText(frame, f'Camera Framerate: {cam_fps} - Current Framerate: {framerate} fps',
bottomLeftCornerOfText,
font,
fontScale,
fontColor,
lineType)
# quit instruction label
label = "press 'q' to quit"
cv2.putText(frame, label, (frame.shape[1] - 140, 20),
cv2.FONT_HERSHEY_SIMPLEX, 0.5, (123,49,126))
# *******************************
# display image
cv2.imshow(window_name, frame)
# framerate cannot be zero:
if framerate == 0:
framerate = 1
# using waitKey to simulate framerate
key = cv2.waitKey(int(1000/framerate))
# The loop can be set to detect specific key strokes by recording which
# key is pressed
# e.g. if user presses "q" then exit
if (key == ord('q')):
keep_processing = False
# close all windows
cv2.destroyAllWindows()
else:
print("No video file specified or camera connected.")
# ===================================================================
# Amir Atapour-Abarghouei
# Copyright (c) 2024 Dept Computer Science, Durham University, UK
# ===================================================================