-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp_final.py
37 lines (28 loc) · 1.17 KB
/
app_final.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
import os
import argparse
import threading
import main_app
import tetris
def get_args():
parser = argparse.ArgumentParser()
parser.add_argument("--device", type=int, default=0)
parser.add_argument("--width", help='cap width', type=int, default=960)
parser.add_argument("--height", help='cap height', type=int, default=540)
parser.add_argument('--use_static_image_mode', action='store_true')
parser.add_argument("--min_detection_confidence",
help='min_detection_confidence',
type=float,
default=0.7)
parser.add_argument("--min_tracking_confidence",
help='min_tracking_confidence',
type=int,
default=0.5)
args = parser.parse_args()
return args
if __name__ == '__main__':
args = get_args()
# os.environ['CUDA_VISIBLE_DEVICES'] = str(args.cuda_device_no)
p1 = threading.Thread(target=main_app.solve, args=(args,)) # thêm dấu (,) ở đuôi args vì nó yêu cầu đuôi là một iterable
p1.start()
p2 = threading.Thread(target=tetris.Run, args=(16, 30))
p2.start()