-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.py
More file actions
150 lines (136 loc) · 4.99 KB
/
utils.py
File metadata and controls
150 lines (136 loc) · 4.99 KB
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
import numpy as np
import torch
from medpy import metric
import torch.nn as nn
import SimpleITK as sitk
import cv2
import os
class DiceLoss(nn.Module):
def __init__(self, n_classes=2):
super(DiceLoss, self).__init__()
self.n_classes = n_classes
def _one_hot_encoder(self, input_tensor):
tensor_list = []
for i in range(self.n_classes):
temp_prob = input_tensor == i # * torch.ones_like(input_tensor)
tensor_list.append(temp_prob.unsqueeze(1))
output_tensor = torch.cat(tensor_list, dim=1)
return output_tensor.float()
def _dice_loss(self, score, target):
target = target.float()
smooth = 1e-5
intersect = torch.sum(score * target)
y_sum = torch.sum(target * target)
z_sum = torch.sum(score * score)
loss = (2 * intersect + smooth) / (z_sum + y_sum + smooth)
loss = 1 - loss
return loss
def forward(self, inputs, target, weight=None, softmax=False):
if softmax:
inputs = torch.softmax(inputs, dim=1)
target = self._one_hot_encoder(target)
if weight is None:
weight = [1] * self.n_classes
assert inputs.size() == target.size(), "predict {} & target {} shape do not match".format(
inputs.size(), target.size()
)
class_wise_dice = []
loss = 0.0
for i in range(0, self.n_classes):
dice = self._dice_loss(inputs[:, i], target[:, i])
class_wise_dice.append(1.0 - dice.item())
loss += dice * weight[i]
return loss / self.n_classes
def calculate_metric_percase(pred, gt):
pred[pred > 0] = 1
gt[gt > 0] = 1
if pred.sum() > 0 and gt.sum() > 0:
dice = metric.binary.dc(pred, gt)
hd95 = metric.binary.hd95(pred, gt)
return dice, hd95, True
elif pred.sum() > 0 and gt.sum() == 0:
return 0, 0, False
elif pred.sum() == 0 and gt.sum() > 0:
return 0, True
else:
return 0, 0, False
def calculate_metric_percase_diceOnly(pred, gt):
pred[pred > 0] = 1
gt[gt > 0] = 1
if pred.sum() > 0 and gt.sum() > 0:
dice = metric.binary.dc(pred, gt)
return dice, True
elif pred.sum() > 0 and gt.sum() == 0:
return 0, False
elif pred.sum() == 0 and gt.sum() > 0:
return 0, True
else:
return 0, False
def omni_seg_test(
image,
label,
net,
classes,
ClassStartIndex=1,
test_save_path=None,
case=None,
prompt=False,
position_prompt=None,
task_prompt=None,
mode_prompt=None,
type_prompt=None,
dataset_name=None,
):
label = label.squeeze(0).cpu().detach().numpy()
image_save = image.squeeze(0).cpu().detach().numpy()
input = image.cuda()
if prompt:
position_prompt = position_prompt.cuda()
task_prompt = task_prompt.cuda()
mode_prompt = mode_prompt.cuda()
type_prompt = type_prompt.cuda()
net.eval()
with torch.no_grad():
if prompt:
seg_out = net((input, position_prompt, task_prompt, mode_prompt, type_prompt))[0]
else:
seg_out = net(input)[0]
out_label_back_transform = torch.cat(
[seg_out[:, 0:1], seg_out[:, ClassStartIndex : ClassStartIndex + classes - 1]], axis=1
)
out = torch.argmax(torch.softmax(out_label_back_transform, dim=1), dim=1).squeeze(0)
prediction = out.cpu().detach().numpy()
metric_list = []
if len(prediction.shape) > 2:
for i in range(len(prediction)):
for j in range(1, classes):
return_tuple = calculate_metric_percase_diceOnly(prediction[i] == j, label[i] == j)
metric_list.append(return_tuple)
else:
for i in range(1, classes):
metric_list.append(calculate_metric_percase_diceOnly(prediction == i, label == i))
if test_save_path is not None:
if dataset_name is not None:
import os
os.makedirs(test_save_path + "/seg/" + dataset_name, exist_ok=True)
image = (image_save - np.min(image_save)) / (np.max(image_save) - np.min(image_save))
image = (image.squeeze(0) * 255).astype(np.uint8)
cv2.imwrite(test_save_path + "/seg/" + dataset_name + "/" + case[:-4] + "_ori.png", image)
prediction_contours, _ = cv2.findContours(
prediction.astype(np.uint8), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE
)
cv2.drawContours(image, prediction_contours, -1, (0, 255, 255), 1)
gt_contours, _ = cv2.findContours(label.astype(np.uint8), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
cv2.drawContours(image, gt_contours, -1, (0, 255, 0), 1)
dice = metric_list[0][0]
cv2.putText(
image,
"Dice: {:.4f}".format(dice),
(10, image.shape[0] - 10),
cv2.FONT_HERSHEY_SIMPLEX,
0.8,
(255, 255, 255),
2,
)
cv2.imwrite(test_save_path + "/seg/" + dataset_name + "/" + case, image)
return metric_list