-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathtest_2D_fully.py
More file actions
177 lines (157 loc) · 6.5 KB
/
test_2D_fully.py
File metadata and controls
177 lines (157 loc) · 6.5 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
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
import argparse
import os
import re
import shutil
import h5py
import nibabel as nib
import numpy as np
import SimpleITK as sitk
import torch
from medpy import metric
from scipy.ndimage import zoom
from scipy.ndimage.interpolation import zoom
from tqdm import tqdm
# from networks.efficientunet import UNet
from networks.net_factory import net_factory
parser = argparse.ArgumentParser()
parser.add_argument('--root_path', type=str,
default='../data/ACDC', help='Name of Experiment')
parser.add_argument('--exp', type=str,
default='ACDC/WeaklySeg_pCE_MumfordShah_Loss', help='experiment_name')
parser.add_argument('--model', type=str,
default='unet', help='model_name')
parser.add_argument('--fold', type=str,
default='fold5', help='fold')
parser.add_argument('--num_classes', type=int, default=4,
help='output channel of network')
parser.add_argument('--sup_type', type=str, default="scribble",
help='label')
def get_fold_ids(fold):
all_cases_set = ["patient{:0>3}".format(i) for i in range(1, 101)]
fold1_testing_set = [
"patient{:0>3}".format(i) for i in range(1, 21)]
fold1_training_set = [
i for i in all_cases_set if i not in fold1_testing_set]
fold2_testing_set = [
"patient{:0>3}".format(i) for i in range(21, 41)]
fold2_training_set = [
i for i in all_cases_set if i not in fold2_testing_set]
fold3_testing_set = [
"patient{:0>3}".format(i) for i in range(41, 61)]
fold3_training_set = [
i for i in all_cases_set if i not in fold3_testing_set]
fold4_testing_set = [
"patient{:0>3}".format(i) for i in range(61, 81)]
fold4_training_set = [
i for i in all_cases_set if i not in fold4_testing_set]
fold5_testing_set = [
"patient{:0>3}".format(i) for i in range(81, 101)]
fold5_training_set = [
i for i in all_cases_set if i not in fold5_testing_set]
if fold == "fold1":
return [fold1_training_set, fold1_testing_set]
elif fold == "fold2":
return [fold2_training_set, fold2_testing_set]
elif fold == "fold3":
return [fold3_training_set, fold3_testing_set]
elif fold == "fold4":
return [fold4_training_set, fold4_testing_set]
elif fold == "fold5":
return [fold5_training_set, fold5_testing_set]
else:
return "ERROR KEY"
def calculate_metric_percase(pred, gt, spacing):
pred[pred > 0] = 1
gt[gt > 0] = 1
dice = metric.binary.dc(pred, gt)
asd = metric.binary.asd(pred, gt, voxelspacing=spacing)
hd95 = metric.binary.hd95(pred, gt, voxelspacing=spacing)
return dice, hd95, asd
def test_single_volume(case, net, test_save_path, FLAGS):
h5f = h5py.File(FLAGS.root_path +
"/ACDC_training_volumes/{}".format(case), 'r')
image = h5f['image'][:]
label = h5f['label'][:]
prediction = np.zeros_like(label)
for ind in range(image.shape[0]):
slice = image[ind, :, :]
x, y = slice.shape[0], slice.shape[1]
slice = zoom(slice, (256 / x, 256 / y), order=0)
input = torch.from_numpy(slice).unsqueeze(
0).unsqueeze(0).float().cuda()
net.eval()
with torch.no_grad():
out_main = net(input)
out = torch.argmax(torch.softmax(
out_main, dim=1), dim=1).squeeze(0)
out = out.cpu().detach().numpy()
pred = zoom(out, (x / 256, y / 256), order=0)
prediction[ind] = pred
case = case.replace(".h5", "")
org_img_path = "../data/ACDC_training/{}.nii.gz".format(case)
org_img_itk = sitk.ReadImage(org_img_path)
spacing = org_img_itk.GetSpacing()
first_metric = calculate_metric_percase(
prediction == 1, label == 1, (spacing[2], spacing[0], spacing[1]))
second_metric = calculate_metric_percase(
prediction == 2, label == 2, (spacing[2], spacing[0], spacing[1]))
third_metric = calculate_metric_percase(
prediction == 3, label == 3, (spacing[2], spacing[0], spacing[1]))
img_itk = sitk.GetImageFromArray(image.astype(np.float32))
img_itk.CopyInformation(org_img_itk)
prd_itk = sitk.GetImageFromArray(prediction.astype(np.float32))
prd_itk.CopyInformation(org_img_itk)
lab_itk = sitk.GetImageFromArray(label.astype(np.float32))
lab_itk.CopyInformation(org_img_itk)
sitk.WriteImage(prd_itk, test_save_path + case + "_pred.nii.gz")
sitk.WriteImage(img_itk, test_save_path + case + "_img.nii.gz")
sitk.WriteImage(lab_itk, test_save_path + case + "_gt.nii.gz")
return first_metric, second_metric, third_metric
def Inference(FLAGS):
train_ids, test_ids = get_fold_ids(FLAGS.fold)
all_volumes = os.listdir(
FLAGS.root_path + "/ACDC_training_volumes")
image_list = []
for ids in test_ids:
new_data_list = list(filter(lambda x: re.match(
'{}.*'.format(ids), x) != None, all_volumes))
image_list.extend(new_data_list)
snapshot_path = "../model/{}_{}/{}".format(
FLAGS.exp, FLAGS.fold, FLAGS.sup_type)
test_save_path = "../model/{}_{}/{}/{}_predictions/".format(
FLAGS.exp, FLAGS.fold, FLAGS.sup_type, FLAGS.model)
if os.path.exists(test_save_path):
shutil.rmtree(test_save_path)
os.makedirs(test_save_path)
net = net_factory(net_type=FLAGS.model, in_chns=1,
class_num=FLAGS.num_classes)
save_mode_path = os.path.join(
snapshot_path, 'iter_60000.pth')
net.load_state_dict(torch.load(save_mode_path))
print("init weight from {}".format(save_mode_path))
net.eval()
first_total = 0.0
second_total = 0.0
third_total = 0.0
for case in tqdm(image_list):
print(case)
first_metric, second_metric, third_metric = test_single_volume(
case, net, test_save_path, FLAGS)
first_total += np.asarray(first_metric)
second_total += np.asarray(second_metric)
third_total += np.asarray(third_metric)
avg_metric = [first_total / len(image_list), second_total /
len(image_list), third_total / len(image_list)]
print(avg_metric)
print((avg_metric[0] + avg_metric[1] + avg_metric[2]) / 3)
return ((avg_metric[0] + avg_metric[1] + avg_metric[2]) / 3)[0]
if __name__ == '__main__':
FLAGS = parser.parse_args()
total = 0.0
for i in [1, 2, 3, 4, 5]:
# for i in [5]:
FLAGS.fold = "fold{}".format(i)
print("Inference fold{}".format(i))
mean_dice = Inference(FLAGS)
total += mean_dice
print(total/5.0)