10
10
import threading
11
11
12
12
parser = argparse .ArgumentParser ()
13
- parser .add_argument ('outdir' , type = str )
14
- parser .add_argument ('-d' , '--digit_dictionary' , type = str , default = '../digit_dictionary.json' )
15
- parser .add_argument ('-c' , '--chara_dictionary' , type = str , default = '../chara_dictionary.json' )
16
- parser .add_argument ('-s' , '--stock_dictionary' , type = str , default = '../stock_dictionary.json' )
13
+ parser .add_argument ('-d' , '--digit_dictionary' , type = str , default = '../digit_dictionary_v1.json' )
14
+ parser .add_argument ('-c' , '--chara_dictionary' , type = str , default = '../chara_dictionary_v3.json' )
15
+ parser .add_argument ('-s' , '--stock_dictionary' , type = str , default = '../stock_dictionary_v3.json' )
17
16
parser .add_argument ('-f' , '--fighter_num' , type = int , default = 2 ) # TODO: predict
18
- parser .add_argument ('-p' , '--capture_index' , type = int , default = 2 )
17
+ parser .add_argument ('-p' , '--capture_device' , type = int , default = None )
18
+ parser .add_argument ('-i' , '--video' , type = str , default = None )
19
+ parser .add_argument ('--dump' , action = 'store_true' )
20
+ parser .add_argument ('-o' , '--outdir' , type = str , default = './' )
21
+ parser .add_argument ('--sync' , action = 'store_true' )
19
22
args = parser .parse_args ()
20
23
24
+ assert (args .capture_device is not None ) ^ (args .video is not None )
25
+
21
26
os .makedirs (args .outdir , exist_ok = True )
22
27
23
28
40
45
analyzer = SSBUFrameAnalyzer (digit_classifier = digit_classifier , name_recognizer = name_recognizer , chara_classifier = chara_classifier , stock_classifier = stock_classifier )
41
46
42
47
43
- fps = 30
48
+ if args .capture_device :
49
+ fps = 30
50
+
51
+ cap = cv2 .VideoCapture (args .capture_device )
52
+ cap .set (cv2 .CAP_PROP_FRAME_WIDTH , 1280 )
53
+ cap .set (cv2 .CAP_PROP_FRAME_HEIGHT , 720 )
54
+ cap .set (cv2 .CAP_PROP_FPS , fps )
55
+ else :
56
+ cap = cv2 .VideoCapture (args .video )
44
57
45
- cap = cv2 .VideoCapture (args .capture_index )
46
- cap .set (cv2 .CAP_PROP_FRAME_WIDTH , 1280 )
47
- cap .set (cv2 .CAP_PROP_FRAME_HEIGHT , 720 )
48
- cap .set (cv2 .CAP_PROP_FPS , fps )
58
+ if args .dump :
59
+ outfile = '%f.avi' % time .time ()
60
+ outpath = os .path .join (args .outdir , outfile )
49
61
50
- outfile = '%f.avi' % time . time ( )
51
- outpath = os . path . join ( args . outdir , outfile )
62
+ fourcc = cv2 . VideoWriter_fourcc ( * 'XVID' )
63
+ out = cv2 . VideoWriter ( outpath , fourcc , fps , ( 1280 , 720 ) )
52
64
53
- fourcc = cv2 .VideoWriter_fourcc (* 'XVID' )
54
- out = cv2 .VideoWriter (outpath , fourcc , fps , (1280 , 720 ))
65
+ print ('Dump mode: %s' % outpath )
66
+ else :
67
+ print ('No Dump mode' )
55
68
56
69
task = None
57
70
def do_task ():
@@ -64,26 +77,33 @@ def do_task():
64
77
65
78
print ('-' * 40 )
66
79
print (ret )
67
- print ('FPS: %f (%f s)' % (1 / elapsed , elapsed , ))
80
+ print ('Task FPS: %f (%f s)' % (1 / elapsed , elapsed , ))
68
81
69
82
task = None
70
83
71
84
while True :
85
+ ts = time .time ()
72
86
ret , frame = cap .read ()
73
87
74
- out .write (frame )
75
-
76
- # print(frame.shape)
77
- cv2 .imshow ('img' , frame )
78
-
79
88
if task is None :
80
89
task = threading .Thread (target = do_task )
81
90
task .start ()
91
+ if args .sync :
92
+ task .join ()
93
+
94
+ if args .dump :
95
+ out .write (frame )
96
+
97
+ # print(frame.shape)
98
+ cv2 .imshow ('img' , frame )
99
+ elapsed = time .time () - ts
100
+ print ('Camera FPS: %f (%f s)' % (1 / elapsed , elapsed , ))
82
101
83
102
c = cv2 .waitKey (1 )
84
103
if c & 0xFF == ord ('q' ):
85
104
break
86
105
87
106
cap .release ()
88
- out .release ()
107
+ if args .dump :
108
+ out .release ()
89
109
cv2 .destroyAllWindows ()
0 commit comments