-
Notifications
You must be signed in to change notification settings - Fork 0
/
inference_3D.py
executable file
·408 lines (357 loc) · 13 KB
/
inference_3D.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
from os import listdir, makedirs
from os.path import join, isfile, basename
from glob import glob
from tqdm import tqdm
from copy import deepcopy
from time import time
import numpy as np
import torch
import torch.nn as nn
import torch.nn.functional as F
from segment_anything.modeling import MaskDecoder, PromptEncoder, TwoWayTransformer
from tiny_vit_sam import TinyViT
from matplotlib import pyplot as plt
import cv2
import torch.multiprocessing as mp
import argparse
#%% set seeds
torch.set_float32_matmul_precision('high')
torch.manual_seed(2023)
torch.cuda.manual_seed(2023)
np.random.seed(2023)
parser = argparse.ArgumentParser()
parser.add_argument(
'-data_root',
type=str,
required=True,
help='root directory of the data',
)
parser.add_argument(
'-pred_save_dir',
type=str,
required=True,
help='directory to save the prediction',
)
parser.add_argument(
'-medsam_lite_checkpoint_path',
type=str,
default="workdir/lite_medsam.pth",
help='path to the checkpoint of MedSAM-Lite',
)
parser.add_argument(
'-device',
type=str,
default="cuda:0",
help='device to run the inference',
)
parser.add_argument(
'-num_workers',
type=int,
default=4,
help='number of workers for inference with multiprocessing',
)
parser.add_argument(
'--save_overlay',
action='store_true',
help='whether to save the overlay image'
)
parser.add_argument(
'-png_save_dir',
type=str,
default='./overlay/CT_Abd',
help='directory to save the overlay image'
)
parser.add_argument(
'--overwrite',
action='store_true',
help='whether to overwrite the existing prediction'
)
args = parser.parse_args()
data_root = args.data_root
pred_save_dir = args.pred_save_dir
save_overlay = args.save_overlay
num_workers = args.num_workers
overwrite = args.overwrite
if save_overlay:
assert args.png_save_dir is not None, "Please specify the directory to save the overlay image"
png_save_dir = args.png_save_dir
makedirs(png_save_dir, exist_ok=True)
medsam_lite_checkpoint_path = args.medsam_lite_checkpoint_path
makedirs(pred_save_dir, exist_ok=True)
bbox_shift = 5
device = torch.device(args.device)
gt_path_files = sorted(glob(join(data_root, '*.npz'), recursive=True))
image_size = 256
def resize_longest_side(image, target_length):
"""
Expects a numpy array with shape HxWxC in uint8 format.
"""
long_side_length = target_length
oldh, oldw = image.shape[0], image.shape[1]
scale = long_side_length * 1.0 / max(oldh, oldw)
newh, neww = oldh * scale, oldw * scale
neww, newh = int(neww + 0.5), int(newh + 0.5)
target_size = (neww, newh)
return cv2.resize(image, target_size, interpolation=cv2.INTER_AREA)
def pad_image(image, target_size):
"""
Expects a numpy array with shape HxWxC in uint8 format.
"""
# Pad
h, w = image.shape[0], image.shape[1]
padh = target_size - h
padw = target_size - w
if len(image.shape) == 3: ## Pad image
image_padded = np.pad(image, ((0, padh), (0, padw), (0, 0)))
else: ## Pad gt mask
image_padded = np.pad(image, ((0, padh), (0, padw)))
return image_padded
class MedSAM_Lite(nn.Module):
def __init__(
self,
image_encoder,
mask_decoder,
prompt_encoder
):
super().__init__()
self.image_encoder = image_encoder
self.mask_decoder = mask_decoder
self.prompt_encoder = prompt_encoder
def forward(self, image, box_np):
image_embedding = self.image_encoder(image) # (B, 256, 64, 64)
# do not compute gradients for prompt encoder
with torch.no_grad():
box_torch = torch.as_tensor(box_np, dtype=torch.float32, device=image.device)
if len(box_torch.shape) == 2:
box_torch = box_torch[:, None, :] # (B, 1, 4)
sparse_embeddings, dense_embeddings = self.prompt_encoder(
points=None,
boxes=box_np,
masks=None,
)
low_res_masks, iou_predictions = self.mask_decoder(
image_embeddings=image_embedding, # (B, 256, 64, 64)
image_pe=self.prompt_encoder.get_dense_pe(), # (1, 256, 64, 64)
sparse_prompt_embeddings=sparse_embeddings, # (B, 2, 256)
dense_prompt_embeddings=dense_embeddings, # (B, 256, 64, 64)
multimask_output=False,
) # (B, 1, 256, 256)
return low_res_masks
@torch.no_grad()
def postprocess_masks(self, masks, new_size, original_size):
"""
Do cropping and resizing
Parameters
----------
masks : torch.Tensor
masks predicted by the model
new_size : tuple
the shape of the image after resizing to the longest side of 256
original_size : tuple
the original shape of the image
Returns
-------
torch.Tensor
the upsampled mask to the original size
"""
# Crop
masks = masks[..., :new_size[0], :new_size[1]]
# Resize
masks = F.interpolate(
masks,
size=(original_size[0], original_size[1]),
mode="bilinear",
align_corners=False,
)
return masks
def show_mask(mask, ax, mask_color=None, alpha=0.5):
if mask_color is not None:
color = np.concatenate([mask_color, np.array([alpha])], axis=0)
else:
color = np.array([251/255, 252/255, 30/255, alpha])
h, w = mask.shape[-2:]
mask_image = mask.reshape(h, w, 1) * color.reshape(1, 1, -1)
ax.imshow(mask_image)
def show_box(box, ax, edgecolor='blue'):
x0, y0 = box[0], box[1]
w, h = box[2] - box[0], box[3] - box[1]
ax.add_patch(plt.Rectangle((x0, y0), w, h, edgecolor=edgecolor, facecolor=(0,0,0,0), lw=2))
def resize_box(box, new_size, original_size):
"""
Revert box coordinates from scale at 256 to original scale
Parameters
----------
box : np.ndarray
box coordinates at 256 scale
new_size : tuple
Image shape with the longest edge resized to 256
original_size : tuple
Original image shape
Returns
-------
np.ndarray
box coordinates at original scale
"""
new_box = np.zeros_like(box)
ratio = max(original_size) / max(new_size)
for i in range(len(box)):
new_box[i] = int(box[i] * ratio)
return new_box
@torch.no_grad()
def medsam_inference(medsam_model, img_embed, box_256, new_size, original_size):
box_torch = torch.as_tensor(box_256[None, None, ...], dtype=torch.float, device=img_embed.device)
sparse_embeddings, dense_embeddings = medsam_model.prompt_encoder(
points = None,
boxes = box_torch,
masks = None,
)
low_res_logits, _ = medsam_model.mask_decoder(
image_embeddings=img_embed, # (B, 256, 64, 64)
image_pe=medsam_model.prompt_encoder.get_dense_pe(), # (1, 256, 64, 64)
sparse_prompt_embeddings=sparse_embeddings, # (B, 2, 256)
dense_prompt_embeddings=dense_embeddings, # (B, 256, 64, 64)
multimask_output=False
)
low_res_pred = medsam_model.postprocess_masks(low_res_logits, new_size, original_size)
low_res_pred = torch.sigmoid(low_res_pred)
low_res_pred = low_res_pred.squeeze().cpu().numpy()
medsam_seg = (low_res_pred > 0.5).astype(np.uint8)
return medsam_seg
def get_bbox(gt2D, bbox_shift=5):
assert np.max(gt2D)==1 and np.min(gt2D)==0.0, f'ground truth should be 0, 1, but got {np.unique(gt2D)}'
y_indices, x_indices = np.where(gt2D > 0)
x_min, x_max = np.min(x_indices), np.max(x_indices)
y_min, y_max = np.min(y_indices), np.max(y_indices)
# add perturbation to bounding box coordinates
H, W = gt2D.shape
x_min = max(0, x_min - bbox_shift)
x_max = min(W, x_max + bbox_shift)
y_min = max(0, y_min - bbox_shift)
y_max = min(H, y_max + bbox_shift)
bboxes = np.array([x_min, y_min, x_max, y_max])
return bboxes
medsam_lite_image_encoder = TinyViT(
img_size=256,
in_chans=3,
embed_dims=[
64, ## (64, 256, 256)
128, ## (128, 128, 128)
160, ## (160, 64, 64)
320 ## (320, 64, 64)
],
depths=[2, 2, 6, 2],
num_heads=[2, 4, 5, 10],
window_sizes=[7, 7, 14, 7],
mlp_ratio=4.,
drop_rate=0.,
drop_path_rate=0.0,
use_checkpoint=False,
mbconv_expand_ratio=4.0,
local_conv_size=3,
layer_lr_decay=0.8
)
medsam_lite_prompt_encoder = PromptEncoder(
embed_dim=256,
image_embedding_size=(64, 64),
input_image_size=(256, 256),
mask_in_chans=16
)
medsam_lite_mask_decoder = MaskDecoder(
num_multimask_outputs=3,
transformer=TwoWayTransformer(
depth=2,
embedding_dim=256,
mlp_dim=2048,
num_heads=8,
),
transformer_dim=256,
iou_head_depth=3,
iou_head_hidden_dim=256,
)
medsam_lite_model = MedSAM_Lite(
image_encoder = medsam_lite_image_encoder,
mask_decoder = medsam_lite_mask_decoder,
prompt_encoder = medsam_lite_prompt_encoder
)
medsam_lite_checkpoint = torch.load(medsam_lite_checkpoint_path, map_location='cpu')
medsam_lite_model.load_state_dict(medsam_lite_checkpoint)
medsam_lite_model.to(device)
medsam_lite_model.eval()
def MedSAM_infer_npz(gt_path_file):
npz_name = basename(gt_path_file)
task_folder = gt_path_file.split('/')[-2]
makedirs(join(pred_save_dir, task_folder), exist_ok=True)
if (not isfile(join(pred_save_dir, task_folder, npz_name))) or overwrite:
npz_data = np.load(gt_path_file, 'r', allow_pickle=True) # (H, W, 3)
img_3D = npz_data['imgs'] # (Num, H, W)
gt_3D = npz_data['gts'] # (Num, H, W)
spacing = npz_data['spacing']
seg_3D = np.zeros_like(gt_3D, dtype=np.uint8) # (Num, H, W)
box_list = [dict() for _ in range(img_3D.shape[0])]
for i in range(img_3D.shape[0]):
img_2d = img_3D[i,:,:] # (H, W)
H, W = img_2d.shape[:2]
img_3c = np.repeat(img_2d[:,:, None], 3, axis=-1) # (H, W, 3)
## MedSAM Lite preprocessing
img_256 = resize_longest_side(img_3c, 256)
newh, neww = img_256.shape[:2]
img_256 = (img_256 - img_256.min()) / np.clip(
img_256.max() - img_256.min(), a_min=1e-8, a_max=None
)
img_256_padded = pad_image(img_256, 256)
img_256_tensor = torch.tensor(img_256_padded).float().permute(2, 0, 1).unsqueeze(0).to(device)
with torch.no_grad():
image_embedding = medsam_lite_model.image_encoder(img_256_tensor)
gt = gt_3D[i,:,:] # (H, W)
label_ids = np.unique(gt)[1:]
for label_id in label_ids:
gt2D = np.uint8(gt == label_id) # only one label, (H, W)
if gt2D.shape != (newh, neww):
gt2D_resize = cv2.resize(
gt2D.astype(np.uint8), (neww, newh),
interpolation=cv2.INTER_NEAREST
).astype(np.uint8)
else:
gt2D_resize = gt2D.astype(np.uint8)
gt2D_padded = pad_image(gt2D_resize, 256) ## (256, 256)
if np.sum(gt2D_padded) > 0:
box = get_bbox(gt2D_padded, bbox_shift) # (4,)
sam_mask = medsam_inference(medsam_lite_model, image_embedding, box, (newh, neww), (H, W))
seg_3D[i, sam_mask>0] = label_id
box_list[i][label_id] = box
label_ids = np.unique(gt_3D)[1:]
np.savez_compressed(
join(pred_save_dir, task_folder, npz_name),
segs=seg_3D, gts=gt_3D, spacing=spacing
)
# visualize image, mask and bounding box
if save_overlay:
idx = int(seg_3D.shape[0] / 2)
box_dict = box_list[idx]
fig, ax = plt.subplots(1, 3, figsize=(15, 5))
ax[0].imshow(img_3D[idx], cmap='gray')
ax[1].imshow(img_3D[idx], cmap='gray')
ax[2].imshow(img_3D[idx], cmap='gray')
ax[0].set_title("Image")
ax[1].set_title("Ground Truth")
ax[2].set_title(f"Segmentation")
ax[0].axis('off')
ax[1].axis('off')
ax[2].axis('off')
for label_id, box_256 in box_dict.items():
color = np.random.rand(3)
box_viz = resize_box(box_256, (newh, neww), (H, W))
show_mask(gt_3D[idx], ax[1], mask_color=color)
show_box(box_viz, ax[1], edgecolor=color)
show_mask(seg_3D[idx], ax[2], mask_color=color)
show_box(box_viz, ax[2], edgecolor=color)
plt.tight_layout()
plt.savefig(join(png_save_dir, npz_name.split(".")[0] + '.png'), dpi=300)
plt.close()
if __name__ == '__main__':
num_workers = num_workers
mp.set_start_method('spawn')
with mp.Pool(processes=num_workers) as pool:
with tqdm(total=len(gt_path_files)) as pbar:
for i, _ in tqdm(enumerate(pool.imap_unordered(MedSAM_infer_npz, gt_path_files))):
pbar.update()