-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
executable file
·27 lines (22 loc) · 1.01 KB
/
main.py
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
import argparse
import os
import CaptureFrame_Process
# define the required arguments: video path(file_path), sample frequency(second), saving path for final result table
# for more information of 'argparse' module, see https://docs.python.org/3/library/argparse.html
def get_args():
parser = argparse.ArgumentParser()
parser.add_argument('--file_path', type=str, default='trainingsvideo.avi')
parser.add_argument('--output_path', type=str, default='result.csv')
parser.add_argument('--sample_frequency', type=int, default=2)
args = parser.parse_args()
return args
# In this file, you need to pass three arguments into CaptureFrame_Process function.
if __name__ == '__main__':
args = get_args()
if args.output_path is None:
output_path = os.getcwd()
else:
output_path = args.output_path
file_path = args.file_path
sample_frequency = args.sample_frequency
CaptureFrame_Process.capture_frame_process(file_path, sample_frequency, output_path)