forked from axinc-ai/ailia-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhand_detection_pytorch.py
139 lines (114 loc) · 3.82 KB
/
hand_detection_pytorch.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
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
import sys
import time
import cv2
import ailia
import hand_detection_pytorch_utils
# import original modules
sys.path.append('../../util')
from utils import get_base_parser, update_parser # noqa: E402
from model_utils import check_and_download_models # noqa: E402
import webcamera_utils # noqa: E402
# ======================
# Parameters
# ======================
WEIGHT_PATH = 'hand_detection_pytorch.onnx'
MODEL_PATH = 'hand_detection_pytorch.onnx.prototxt'
REMOTE_PATH = 'https://storage.googleapis.com/ailia-models/hand_detection_pytorch/'
IMAGE_PATH = 'CARDS_OFFICE.jpg'
SAVE_IMAGE_PATH = 'CARDS_OFFICE_output.jpg'
THRESHOLD = 0.2
IOU = 0.2
# ======================
# Arguemnt Parser Config
# ======================
parser = get_base_parser(
'hand-detection.PyTorch hand detection model',
IMAGE_PATH,
SAVE_IMAGE_PATH,
)
args = update_parser(parser)
# ======================
# Main functions
# ======================
def recognize_from_image():
# prepare input data
to_show = cv2.imread(args.input, cv2.IMREAD_COLOR)
print(f'input image shape: {to_show.shape}')
img, scale = hand_detection_pytorch_utils.pre_process(to_show)
# net initialize
detector = ailia.Net(MODEL_PATH, WEIGHT_PATH, env_id=args.env_id)
detector.set_input_shape((1, 3, img.shape[2], img.shape[3]))
# inference
print('Start inference...')
if args.benchmark:
print('BENCHMARK mode')
for i in range(5):
start = int(round(time.time() * 1000))
out = detector.predict({'input.1': img})
end = int(round(time.time() * 1000))
print(f'\tailia processing time {end - start} ms')
else:
out = detector.predict({'input.1': img})
dets = hand_detection_pytorch_utils.post_process(
out, img, scale, THRESHOLD, IOU
)
for i in range(dets.shape[0]):
cv2.rectangle(
to_show,
(dets[i][0], dets[i][1]),
(dets[i][2], dets[i][3]),
[0, 0, 255],
3
)
cv2.imwrite(args.savepath, to_show)
print('Script finished successfully.')
def recognize_from_video():
# net initialize
detector = ailia.Net(MODEL_PATH, WEIGHT_PATH, env_id=args.env_id)
capture = webcamera_utils.get_capture(args.video)
# create video writer if savepath is specified as video format
if args.savepath != SAVE_IMAGE_PATH:
f_h = int(capture.get(cv2.CAP_PROP_FRAME_HEIGHT))
f_w = int(capture.get(cv2.CAP_PROP_FRAME_WIDTH))
writer = webcamera_utils.get_writer(args.savepath, f_h, f_w)
else:
writer = None
while(True):
ret, to_show = capture.read()
# press q to end video capture
if (cv2.waitKey(1) & 0xFF == ord('q')) or not ret:
break
img, scale = hand_detection_pytorch_utils.pre_process(to_show)
detector.set_input_shape((1, 3, img.shape[2], img.shape[3]))
out = detector.predict({'input.1': img})
dets = hand_detection_pytorch_utils.post_process(
out, img, scale, THRESHOLD, IOU
)
for i in range(dets.shape[0]):
cv2.rectangle(
to_show,
(dets[i][0], dets[i][1]),
(dets[i][2], dets[i][3]),
[0, 0, 255],
3
)
cv2.imshow('frame', to_show)
# save results
if writer is not None:
writer.write(to_show)
capture.release()
cv2.destroyAllWindows()
if writer is not None:
writer.release()
print('Script finished successfully.')
def main():
# model files check and download
check_and_download_models(WEIGHT_PATH, MODEL_PATH, REMOTE_PATH)
if args.video is not None:
# video mode
recognize_from_video()
else:
# image mode
recognize_from_image()
if __name__ == '__main__':
main()