forked from axinc-ai/ailia-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsrresnet.py
231 lines (189 loc) · 6.79 KB
/
srresnet.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
import sys
import time
import ailia
import cv2
import numpy as np
# import original modules
sys.path.append('../../util')
# logger
from logging import getLogger # noqa: E402
import webcamera_utils # noqa: E402
from image_utils import imread, load_image # noqa: E402
from model_utils import check_and_download_models # noqa: E402
from utils import get_base_parser, get_savepath, update_parser # noqa: E402
logger = getLogger(__name__)
# ======================
# Parameters 1
# ======================
IMAGE_PATH = 'lenna.png'
SAVE_IMAGE_PATH = 'output.png'
IMAGE_HEIGHT = 64 # net.get_input_shape()[3]
IMAGE_WIDTH = 64 # net.get_input_shape()[2]
OUTPUT_HEIGHT = 256 # net.get_output_shape()[3]
OUTPUT_WIDTH = 256 # net.get_output.shape()[2]
# ======================
# Arguemnt Parser Config
# ======================
parser = get_base_parser(
'Single Image Super-Resolution', IMAGE_PATH, SAVE_IMAGE_PATH,
)
parser.add_argument(
'-n', '--normal', action='store_true',
help=('By default, the optimized model is used, but with this option, ' +
'you can switch to the normal (not optimized) model')
)
parser.add_argument(
'-p', '--padding', action='store_true',
help=('Instead of resizing input image when loading it, ' +
' padding input and output image')
)
args = update_parser(parser)
# ======================
# Parameters 2
# ======================
if not args.normal:
WEIGHT_PATH = 'srresnet.opt.onnx'
MODEL_PATH = 'srresnet.opt.onnx.prototxt'
else:
WEIGHT_PATH = 'srresnet.onnx'
MODEL_PATH = 'srresnet.onnx.prototxt'
REMOTE_PATH = 'https://storage.googleapis.com/ailia-models/srresnet/'
# ======================
# Main functions
# ======================
def recognize_from_image():
# net initialize
net = ailia.Net(MODEL_PATH, WEIGHT_PATH, env_id=args.env_id)
# input image loop
for image_path in args.input:
# prepare input data
logger.info(image_path)
input_data = load_image(
image_path,
(IMAGE_HEIGHT, IMAGE_WIDTH),
normalize_type='255',
gen_input_ailia=True,
)
# inference
logger.info('Start inference...')
if args.benchmark:
logger.info('BENCHMARK mode')
for i in range(5):
start = int(round(time.time() * 1000))
preds_ailia = net.predict(input_data)
end = int(round(time.time() * 1000))
logger.info(f'\tailia processing time {end - start} ms')
else:
preds_ailia = net.predict(input_data)
# postprocessing
output_img = preds_ailia[0].transpose((1, 2, 0))
output_img = cv2.cvtColor(output_img, cv2.COLOR_RGB2BGR)
savepath = get_savepath(args.savepath, image_path)
logger.info(f'saved at : {savepath}')
cv2.imwrite(savepath, output_img * 255)
logger.info('Script finished successfully.')
def tiling(net, img):
h, w = img.shape[0], img.shape[1]
padding_w = int((w + IMAGE_WIDTH - 1) / IMAGE_WIDTH) * IMAGE_WIDTH
padding_h = int((h+IMAGE_HEIGHT-1) / IMAGE_HEIGHT) * IMAGE_HEIGHT
scale = int(OUTPUT_HEIGHT / IMAGE_HEIGHT)
output_padding_w = padding_w * scale
output_padding_h = padding_h * scale
output_w = w * scale
output_h = h * scale
logger.debug(f'input image : {h}x{w}')
logger.debug(f'output image : {output_w}x{output_h}')
img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
img = img / 255.0
img = img.transpose(2, 0, 1)
img = img[np.newaxis, :, :, :]
pad_img = np.zeros((1, 3, padding_h, padding_w))
pad_img[:, :, 0:h, 0:w] = img
output_pad_img = np.zeros((1, 3, output_padding_h, output_padding_w))
tile_x = int(padding_w / IMAGE_WIDTH)
tile_y = int(padding_h / IMAGE_HEIGHT)
# Inference
start = int(round(time.time() * 1000))
for y in range(tile_y):
for x in range(tile_x):
output_pad_img[
:,
:,
y*OUTPUT_HEIGHT:(y+1)*OUTPUT_HEIGHT,
x*OUTPUT_WIDTH:(x+1)*OUTPUT_WIDTH
] = net.predict(pad_img[
:,
:,
y*IMAGE_HEIGHT:(y+1)*IMAGE_HEIGHT,
x*IMAGE_WIDTH:(x+1)*IMAGE_WIDTH
])
end = int(round(time.time() * 1000))
logger.info(f'ailia processing time {end - start} ms')
# Postprocessing
output_img = output_pad_img[0, :, :output_h, :output_w]
output_img = output_img.transpose(1, 2, 0).astype(np.float32)
output_img = cv2.cvtColor(output_img, cv2.COLOR_RGB2BGR)
return output_img
def recognize_from_image_tiling():
# net initialize
net = ailia.Net(MODEL_PATH, WEIGHT_PATH, env_id=args.env_id)
# processing
# input image loop
for image_path in args.input:
# prepare input data
# TODO: FIXME: preprocess is different, is it intentionally...?
logger.info(image_path)
img = imread(image_path)
output_img = tiling(net, img)
savepath = get_savepath(args.savepath, image_path)
logger.info(f'saved at : {savepath}')
cv2.imwrite(savepath, output_img * 255)
logger.info('Script finished successfully.')
def recognize_from_video():
# net initialize
net = 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:
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))
writer = webcamera_utils.get_writer(args.savepath, f_h, f_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
h, w = frame.shape[0], frame.shape[1]
frame = frame[h//2:h//2+h//4, w//2:w//2+w//4, :]
output_img = tiling(net, frame)
cv2.imshow('frame', output_img)
frame_shown = True
# # save results
# if writer is not None:
# writer.write(output_img)
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
if args.padding:
recognize_from_image_tiling()
else:
recognize_from_image()
if __name__ == '__main__':
main()