forked from MIRACLE-Center/CTPelvic1K
-
Notifications
You must be signed in to change notification settings - Fork 0
/
save_evaluation_results2csv_Manu.py
121 lines (111 loc) · 5.03 KB
/
save_evaluation_results2csv_Manu.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
import pandas as pd
import pickle as pkl
import numpy as np
import shutil
import os
def func():
fold = 21
base_dir = os.environ['HOME']
eval_reslult_pkl_path = base_dir + '/all_data/nnUNet/rawdata/ipcai2021_M_Test/' \
f'Task22_ipcai2021_T__nnUNet_without_mirror_IPCAI2021_deeps_exclusion__nnUNet_without_mirror_IPCAI2021_deeps_exclusion__fold{fold}_3dcascadefullres_pred/' \
'evaluation_oldsdf_0.25__2000_False.pkl'
names_M = base_dir + '/all_data/nnUNet/nnUNet_processed/Task22_ipcai2021/splits_final.pkl'
print(eval_reslult_pkl_path)
with open(eval_reslult_pkl_path, 'rb') as f:
eval_reslult = pkl.load(f) # dict of names and quality sub-dict
with open(names_M, 'rb') as f:
names2eval = pkl.load(f)
print(eval_reslult.keys())
M_d = {}
M_d['SIEMENS'] = 13
M_d['GE'] = 14
M_d['Philips'] = 15
M_d['TOSHIBA'] = 16
M_d['allM'] = 21
Manus = ['SIEMENS', 'GE', 'Philips', 'TOSHIBA', 'allM']
for manu in Manus:
names = []
bone1_Hausdorff = []
bone1_Dice = []
bone2_Hausdorff = []
bone2_Dice = []
bone3_Hausdorff = []
bone3_Dice = []
bone4_Hausdorff = []
bone4_Dice = []
whole_Hausdorff = []
whole_Dice = []
mean_Hausdorff = []
mean_Dice = []
weight_Hausdorff = []
weight_Dice = []
for na in names2eval[M_d[manu]]['test']:
key = na.replace('train_', '')
quality = eval_reslult[key]
names.append(key)
bone1_Hausdorff.append(quality[1]['Hausdorff'])
bone1_Dice.append(quality[1]['dice'])
bone2_Hausdorff.append(quality[2]['Hausdorff'])
bone2_Dice.append(quality[2]['dice'])
bone3_Hausdorff.append(quality[3]['Hausdorff'])
bone3_Dice.append(quality[3]['dice'])
bone4_Hausdorff.append(quality[4]['Hausdorff'])
bone4_Dice.append(quality[4]['dice'])
whole_Hausdorff.append(quality['whole']['Hausdorff'])
whole_Dice.append(quality['whole']['dice'])
mean_Hausdorff.append(quality['mean_hausdorff'])
mean_Dice.append(quality['mean_dice'])
weight_Hausdorff.append(quality['weighted_mean_hausdorff'])
weight_Dice.append(quality['weighted_mean_dice'])
print(manu, len(names))
print(
'bone1_Dice:', np.array(bone1_Dice).mean(), '\n',
'bone1_Hausdorff:', np.array(bone1_Hausdorff).mean(), '\n',
'bone2_Dice:', np.array(bone2_Dice).mean(), '\n',
'bone2_Hausdorff:', np.array(bone2_Hausdorff).mean(), '\n',
'bone3_Dice:', np.array(bone3_Dice).mean(), '\n',
'bone3_Hausdorff:', np.array(bone3_Hausdorff).mean(), '\n',
'bone4_Dice:', np.array(bone4_Dice).mean(), '\n',
'bone4_Hausdorff:', np.array(bone4_Hausdorff).mean(), '\n',
'whole_Dice:', np.array(whole_Dice).mean(), '\n',
'whole_Hausdorff:', np.array(whole_Hausdorff).mean(), '\n',
'mean_Dice:', np.array(mean_Dice).mean(), '\n',
'mean_Hausdorff:', np.array(mean_Hausdorff).mean(), '\n',
'weight_Dice:', np.array(weight_Dice).mean(), '\n',
'weight_Hausdorff:', np.array(weight_Hausdorff).mean(), '\n',
)
assert len(names) == len(bone1_Dice)
assert len(names) == len(bone1_Hausdorff)
assert len(names) == len(bone2_Dice)
assert len(names) == len(bone2_Hausdorff)
assert len(names) == len(bone3_Dice)
assert len(names) == len(bone3_Hausdorff)
assert len(names) == len(bone4_Dice)
assert len(names) == len(bone4_Hausdorff)
assert len(names) == len(whole_Dice)
assert len(names) == len(whole_Hausdorff)
assert len(names) == len(mean_Dice)
assert len(names) == len(mean_Hausdorff)
assert len(names) == len(weight_Dice)
assert len(names) == len(weight_Hausdorff)
results = {'names': names,
'bone1_Dice': bone1_Dice,
'bone1_Hausdorff': bone1_Hausdorff,
'bone2_Dice': bone2_Dice,
'bone2_Hausdorff': bone2_Hausdorff,
'bone3_Dice': bone3_Dice,
'bone3_Hausdorff': bone3_Hausdorff,
'bone4_Dice': bone4_Dice,
'bone4_Hausdorff': bone4_Hausdorff,
'whole_Dice': whole_Dice,
'whole_Hausdorff': whole_Hausdorff,
'mean_Dice': mean_Dice,
'mean_Hausdorff': mean_Hausdorff,
'weight_Dice': weight_Dice,
'weight_Hausdorff': weight_Hausdorff
}
results_pd = pd.DataFrame(results)
save_csv_path = eval_reslult_pkl_path.replace('.pkl', '_{}.csv'.format(manu))
results_pd.to_csv(save_csv_path)
if __name__ == '__main__':
func()