forked from I3orn2FLY/ActionRecognition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.py
executable file
·53 lines (42 loc) · 1.32 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
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
import cv2
import numpy as np
from Detection import *
from Tracker import *
import argparse
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument("--invid", type=str, default="demo.mp4",
help="Input Video")
parser.add_argument("--outvid", type=str, default=None,
help="Output Video")
args = parser.parse_args()
input_video = args.invid
output_video = args.outvid
if (output_video is None):
Save_video = False
else:
Save_video = True
vc = cv2.VideoCapture(input_video)
index = 0
dt = Detector(show=True)
tr = Tracker()
# Saving video
if (Save_video):
fourcc = cv2.VideoWriter_fourcc(*'XVID')
out = cv2.VideoWriter(output_video, fourcc, 20.0, (400, 400))
while (cv2.waitKey(5) != 27):
ret, frame = vc.read()
if not ret:
break
if (index % 2 == 0 and index >= 0):
frame = cv2.resize(frame, (400, 400))
cands, feat_list, frame = dt.detectCandidates(frame)
tr.updateTracks(cands, feat_list, frame, index)
frame = tr.drawTracks()
if (Save_video):
out.write(frame)
index += 1
vc.release()
if (Save_video):
out.release()
cv2.destroyAllWindows()