forked from axinc-ai/ailia-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
modnet.py
167 lines (133 loc) · 4.91 KB
/
modnet.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#ailia detector api sample
import sys
import time
import ailia
import cv2
import numpy as np
from modnet_utils import get_scale_factor
# import original modules
sys.path.append('../../util')
# logger
from logging import getLogger
import webcamera_utils
from image_utils import imread # noqa: E402
from model_utils import check_and_download_models
from arg_utils import get_base_parser, get_savepath, update_parser
logger = getLogger(__name__)
# ======================
# Arguemnt Parser Config
# ======================
IMAGE_PATH = 'input.jpg'
SAVE_IMAGE_PATH = 'output.jpg'
parser = get_base_parser('modnet model', IMAGE_PATH, SAVE_IMAGE_PATH)
parser.add_argument(
'-c', '--composite',
action='store_true',
help='Composite input image and predicted alpha value'
)
args = update_parser(parser)
REMOTE_PATH = 'https://storage.googleapis.com/ailia-models/modnet/'
WEIGHT_PATH = "modnet.opt.onnx"
MODEL_PATH = "modnet.opt.onnx.prototxt"
INFERENCE_HEIGHT = 512
# ======================
# Main functions
# ======================
def recognize_from_image():
env_id = args.env_id
detector = ailia.Net(MODEL_PATH, WEIGHT_PATH, env_id=env_id)
# input image loop
for image_path in args.input:
# prepare input data
logger.debug(f'input image: {image_path}')
raw_img = imread(image_path)
img = cv2.cvtColor(raw_img, cv2.COLOR_BGR2RGB)
img = (img - 127.5) / 127.5
im_h, im_w, im_c = img.shape
x, y = get_scale_factor(im_h, im_w, INFERENCE_HEIGHT)
img = cv2.resize(img, None, fx=x, fy=y, interpolation=cv2.INTER_AREA)
img = np.transpose(img)
img = np.swapaxes(img, 1, 2)
img = np.expand_dims(img, axis=0).astype('float32')
logger.debug(f'input image shape: {img.shape}')
# inference
logger.info('Start inference...')
if args.benchmark:
logger.info('BENCHMARK mode')
for i in range(5):
start = int(round(time.time() * 1000))
pred = detector.predict(img)
end = int(round(time.time() * 1000))
logger.info(f'\tailia processing time {end - start} ms')
else:
pred = detector.predict(img)
matte = (np.squeeze(pred[0]) * 255).astype('uint8')
matte = cv2.resize(matte, dsize=(im_w, im_h), interpolation=cv2.INTER_AREA)
if args.composite:
img = cv2.cvtColor(raw_img, cv2.COLOR_BGR2BGRA)
img[:,:,3] = matte
matte = img
savepath = get_savepath(args.savepath, image_path)
logger.info(f'saved at : {savepath}')
cv2.imwrite(savepath, matte)
logger.info('Script finished successfully.')
def recognize_from_video():
# net initialize
env_id = args.env_id
detector = ailia.Net(MODEL_PATH, WEIGHT_PATH, env_id=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:
logger.warning(
'currently, video results cannot be output correctly...'
)
f_h = int(capture.get(cv2.CAP_PROP_FRAME_HEIGHT))
f_w = int(capture.get(cv2.CAP_PROP_FRAME_WIDTH))
save_h, save_w = f_h, f_w
writer = webcamera_utils.get_writer(args.savepath, save_h, save_w)
else:
writer = None
frame_shown = False
while (True):
ret, frame = capture.read()
if (cv2.waitKey(1) & 0xFF == ord('q')) or not ret:
break
if frame_shown and cv2.getWindowProperty('frame', cv2.WND_PROP_VISIBLE) == 0:
break
raw_img = frame
img = (raw_img - 127.5) / 127.5
im_h, im_w, im_c = img.shape
x, y = get_scale_factor(im_h, im_w, INFERENCE_HEIGHT)
img = cv2.resize(img, None, fx=x, fy=y, interpolation=cv2.INTER_AREA)
img = np.transpose(img)
img = np.swapaxes(img, 1, 2)
img = np.expand_dims(img, axis=0).astype('float32')
pred = detector.predict(img)
matte = np.squeeze(pred[0])
matte = cv2.resize(matte, dsize=(im_w, im_h), interpolation=cv2.INTER_AREA)
# force composite
frame[:, :, 0] = frame[:, :, 0] * matte + 64 * (1 - matte)
frame[:, :, 1] = frame[:, :, 1] * matte + 177 * (1 - matte)
frame[:, :, 2] = frame[:, :, 2] * matte
matte = frame.astype('uint8')
cv2.imshow('frame', matte)
frame_shown = True
# save results
if writer is not None:
writer.write(matte)
capture.release()
cv2.destroyAllWindows()
if writer is not None:
writer.release()
logger.info('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()