-
Notifications
You must be signed in to change notification settings - Fork 37
/
mmocr_sam_erase_app.py
260 lines (236 loc) · 9.71 KB
/
mmocr_sam_erase_app.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
import cv2
import gradio as gr
import numpy as np
import PIL.Image as Image
import torch
from matplotlib import pyplot as plt
# MMOCR
from mmocr.apis.inferencers import MMOCRInferencer
from mmocr.utils import poly2bbox
# SAM
from segment_anything import SamPredictor, sam_model_registry
# Diffusion model
from diffusers import StableDiffusionInpaintPipeline
from mmocr.utils.polygon_utils import offset_polygon
import sys
sys.path.append('latent_diffusion')
from latent_diffusion.ldm_erase_text import erase_text_from_image, instantiate_from_config, OmegaConf
det_config = 'mmocr_dev/configs/textdet/dbnetpp/dbnetpp_swinv2_base_w16_in21k.py' # noqa
det_weight = 'checkpoints/mmocr/db_swin_mix_pretrain.pth'
rec_config = 'mmocr_dev/configs/textrecog/abinet/abinet_20e_st-an_mj.py'
rec_weight = 'checkpoints/mmocr/abinet_20e_st-an_mj_20221005_012617-ead8c139.pth'
sam_checkpoint = 'checkpoints/sam/sam_vit_h_4b8939.pth'
device = 'cuda'
sam_type = 'vit_h'
# BUILD MMOCR
mmocr_inferencer = MMOCRInferencer(
det_config, det_weight, rec_config, rec_weight, device=device)
# Build SAM
sam = sam_model_registry[sam_type](checkpoint=sam_checkpoint)
sam = sam.to(device)
sam_predictor = SamPredictor(sam)
def multi_mask2one_mask(masks):
_, _, h, w = masks.shape
for i, mask in enumerate(masks):
mask_image = mask.reshape(h, w, 1)
whole_mask = mask_image if i == 0 else whole_mask + mask_image
whole_mask = np.where(whole_mask == False, 0, 255)
return whole_mask
def numpy2PIL(numpy_image):
out = Image.fromarray(numpy_image.astype(np.uint8))
return out
def show_mask(mask, ax, random_color=False):
if random_color:
color = np.concatenate([np.random.random(3), np.array([0.6])], axis=0)
else:
color = np.array([30 / 255, 144 / 255, 255 / 255, 0.6])
h, w = mask.shape[-2:]
mask_image = mask.reshape(h, w, 1) * color.reshape(1, 1, -1)
ax.imshow(mask_image)
def run_mmocr_sam(img: np.ndarray, ):
"""Run MMOCR and SAM
Args:
img (np.ndarray): Input image
det_config (str): Path to the config file of the selected detection
model.
det_weight (str): Path to the custom checkpoint file of the selected
detection model.
rec_config (str): Path to the config file of the selected recognition
model.
rec_weight (str): Path to the custom checkpoint file of the selected
recognition model.
sam_checkpoint (str): Path to the custom checkpoint file of the
selected SAM model.
sam_type (str): Type of the selected SAM model. Defaults to 'vit_h'.
device (str): Device used for inference. Defaults to 'cuda'.
"""
# Build MMOCR
result = mmocr_inferencer(img)['predictions'][0]
rec_texts = result['rec_texts']
det_polygons = result['det_polygons']
det_bboxes = torch.tensor(
np.array([poly2bbox(poly) for poly in det_polygons]),
device=sam_predictor.device)
transformed_boxes = sam_predictor.transform.apply_boxes_torch(
det_bboxes, img.shape[:2])
# SAM inference
sam_predictor.set_image(img, image_format='BGR')
masks, _, _ = sam_predictor.predict_torch(
point_coords=None,
point_labels=None,
boxes=transformed_boxes,
multimask_output=False,
)
# Draw results
plt.figure()
# close axis
plt.axis('off')
# convert img to RGB
img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
plt.imshow(img)
outputs = {}
output_str = ''
for idx, (mask, rec_text, polygon, bbox) in enumerate(
zip(masks, rec_texts, det_polygons, det_bboxes)):
show_mask(mask.cpu(), plt.gca(), random_color=True)
polygon = np.array(polygon).reshape(-1, 2)
# convert polygon to closed polygon
polygon = np.concatenate([polygon, polygon[:1]], axis=0)
plt.plot(polygon[:, 0], polygon[:, 1], '--', color='b', linewidth=4)
# plot text on the left top corner of the polygon
text_string = f'idx:{idx}, {rec_text}'
plt.text(
bbox[0],
bbox[1],
text_string,
color='y',
fontsize=15,
)
output_str += f'{idx}:{rec_text}' + '\n'
outputs[idx] = dict(
mask=mask.cpu().numpy().tolist(), polygon=polygon.tolist())
plt.savefig('output.png')
# convert plt to numpy
img = cv2.cvtColor(
np.array(plt.gcf().canvas.renderer._renderer), cv2.COLOR_RGB2BGR)
plt.close()
return img, output_str, outputs
def run_erase(img: np.ndarray, mask_results, indexs: str, diffusion_type: str,
mask_type: str, dilate_iter: int):
"""Run erase task
Args:
img (np.ndarray): Input image
mask_results (str): Mask results from SAM
indexs (str): Index of the selected text
diffusion_type (str): Type of the selected diffusion model.
mask_type (str): Type of the selected mask model.
"""
# Diffuser
mask_results = eval(mask_results)
indexs = [int(idx) for idx in indexs.split(',')]
img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
h, w, c, = img.shape
img = Image.fromarray(img)
ori_img_size = img.size
selected_mask = []
selected_polygons = []
for idx in indexs:
selected_mask.append(np.array(mask_results[idx]['mask']))
selected_polygons.append(np.array(mask_results[idx]['polygon']))
selected_mask = np.stack(selected_mask, axis=0)
if mask_type == 'SAM':
ori_mask = multi_mask2one_mask(masks=selected_mask)
# Dilate the mask region to promote the following erasing quality
mask_img = ori_mask[:, :, 0].astype('uint8')
kernel = np.ones((5, 5), np.int8)
whole_mask = cv2.dilate(mask_img, kernel, iterations=int(dilate_iter))
elif mask_type == 'MMOCR':
whole_mask = np.zeros((h, w, c), np.uint8)
for polygon in selected_polygons:
# expand the polygon with distance 0.1
expand_poly = offset_polygon(poly=polygon, distance=4).tolist()
px = [int(expand_poly[i]) for i in range(0, len(expand_poly), 2)]
py = [int(expand_poly[i]) for i in range(1, len(expand_poly), 2)]
poly = [[x, y] for x, y in zip(px, py)]
cv2.fillPoly(whole_mask, [np.array(poly)], (255, 255, 255))
if diffusion_type == 'Stable Diffusion':
pipe = StableDiffusionInpaintPipeline.from_pretrained(
'stabilityai/stable-diffusion-2-inpainting',
torch_dtype=torch.float16)
pipe = pipe.to('cuda')
img = img.resize((512, 512))
mask_img = numpy2PIL(numpy_image=whole_mask).convert("RGB").resize(
(512, 512))
prompt = "Just a background with no content"
result_img = pipe(
prompt=prompt, image=img, mask_image=mask_img).images[0]
result_img = result_img.resize(ori_img_size)
elif diffusion_type == 'Latent Diffusion':
config = OmegaConf.load("latent_diffusion/inpainting_big/config.yaml")
model = instantiate_from_config(config.model)
model.load_state_dict(
torch.load("checkpoints/ldm/last.ckpt")["state_dict"],
strict=False)
model = model.to('cuda')
mask_img = numpy2PIL(numpy_image=whole_mask)
result_img = erase_text_from_image(
img_path=img,
mask_pil_img=mask_img,
model=model,
device='cuda',
opt=None,
img_size=(512, 512),
steps=50)
result_img = result_img.resize(ori_img_size)
result_img = cv2.cvtColor(np.array(result_img), cv2.COLOR_RGB2BGR)
return result_img
if __name__ == '__main__':
with gr.Blocks() as demo:
with gr.Row():
with gr.Column(scale=1):
input_image = gr.Image(label='Input Image')
sam_results = gr.Textbox(label='Detection Results')
mask_results = gr.Textbox(label='Mask Results', max_lines=2)
mmocr_sam = gr.Button('Run MMOCR and SAM')
text_index = gr.Textbox(
label=
'Select Text Index. It can be multiple indices separated by commas.'
)
diffusion_type = gr.Radio(
choices=['Stable Diffusion', 'Latent Diffusion'],
label='Erasing Model')
mask_type = gr.Radio(
choices=['SAM', 'MMOCR'], label='Mask Type')
dilate_iter = gr.Slider(
1,
5,
value=2,
step=1,
label='The dilate iteration to dilate the SAM ouput mask',
)
downstream = gr.Button('Run Erasing')
with gr.Column(scale=1):
output_image = gr.Image(label='Output Image')
gr.Markdown("## Image Examples")
gr.Examples(
examples=[
'imgs/ex1.jpg', 'imgs/ex2.jpg', 'imgs/ex3.jpg',
'imgs/ex4.jpg', 'imgs/ex5.jpg', 'imgs/ex6.jpg',
'imgs/ex7.jpg', 'imgs/ex8.jpg', 'imgs/ex9.jpg',
'imgs/ex10.jpg', 'imgs/ex11.jpg', 'imgs/ex12.jpg',
'imgs/ex13.jpg', 'imgs/ex14.jpg', 'imgs/ex15.jpg'
],
inputs=input_image,
)
mmocr_sam.click(
fn=run_mmocr_sam,
inputs=[input_image],
outputs=[output_image, sam_results, mask_results])
downstream.click(
fn=run_erase,
inputs=[
input_image, mask_results, text_index, diffusion_type,
mask_type, dilate_iter
],
outputs=[output_image])
demo.launch(debug=True)