-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheval.py
More file actions
344 lines (307 loc) · 13.2 KB
/
eval.py
File metadata and controls
344 lines (307 loc) · 13.2 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
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
import glob
import torch
import os
import numpy as np
from matplotlib import pyplot as plt
import argparse
from torch.utils.data import DataLoader
from torchvision import transforms
from tqdm import tqdm, trange
from CONRADataset import CONRADataset
from material import multi_slice_viewer
from models.convNet import simpleConvNet
from models.unet import UNet
from skimage.measure import compare_ssim as ssim
def eval(poly, model, d):
'''
:param poly: numpy array in shape 2, p, y, x
:param model: must be on device d and take float data in shape 2, y, x
:param d: device to run evaluation on
:return: numpy array material image
'''
print(poly.shape)
mat = np.zeros_like(poly)
(c, p, y, x) = poly.shape
with torch.no_grad():
for proj in range(poly.shape[0]):
mat[:, proj, :, :] = model(torch.from_numpy(poly[:, proj, :, :].reshape(1, 2, y, x)).to(device=d, dtype=torch.float)).numpy()
print(mat.shape)
return mat
def detectSizesFromFilename(filename):
pa, filename = os.path.split(filename)
fle, ext = os.path.splitext(filename)
parts = fle.split("x")
X = int(parts[0].split('_')[1])
Y = int(parts[1])
P = int(parts[2].split('.')[0])
return X, Y, P
def readToNumpy(files, X, Y, P, CM, CP):
'''
reads in big endian 32 bit float raw files and outputs numpy data
:param files: string array containing the paths to poly and mat files
:return: numpy arrays in format [C, P, Y, X] C = number of materials/energy projections
'''
dt = np.dtype('>f4')
poly = np.empty((CP, P, Y, X))
mat = np.empty((CM, P, Y, X))
mat_channel = 0
for file in files:
print(file + " on channel " + str(mat_channel))
if 'POLY80' in file:
f = np.fromfile(file=file, dtype=dt).newbyteorder().byteswap()
poly[0] = f.reshape(P, Y, X)
elif 'POLY120' in file:
f = np.fromfile(file=file, dtype=dt).newbyteorder().byteswap()
poly[1] = f.reshape(P, Y, X)
elif 'MAT' in file:
f = np.fromfile(file=file, dtype=dt).newbyteorder().byteswap()
mat[mat_channel] = f.reshape(P, Y, X)
mat_channel += 1
else:
print("ERROR IN FILE STRUCTURE")
return poly, mat
def norm(c):
'''
:param c: x, y, c
:return: channel normed version
'''
_ = plt.hist(c[:,:,0])
plt.title("water histogramm")
plt.show()
_ = plt.hist(c[:,:,1])
plt.title("iodine histogramm")
plt.show()
mean = np.sum(np.sum(c, axis=0), axis=0)/(c.shape[0]*c.shape[1])
std = np.sqrt(np.sum(np.sum(np.square(np.subtract(c, mean)), axis=0), axis=0))/(c.shape[0]*c.shape[1])
normed = (c-mean)/std
normed = (normed + normed.min())
normed = normed / normed.max()
c[:, :, 0] = 0
return c
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='model evaluation utility')
parser.add_argument('--data', required=True,
help='folder containing data in .pt or .raw to be used for evaluation')
parser.add_argument('--weigths', required=True,
help='a checkpoint of weights for that type of model')
parser.add_argument('--target', required=True,
help='directory to safe logs and reference images to')
parser.add_argument('--model', '-m', default='unet',
help='model to use. options are: <unet>, [<simpleconv>]')
parser.add_argument('--nosave', default=True, action='store_false', required=False)
args = parser.parse_args()
root_dir = args.data
save = args.nosave
CHECKPOINT = args.weigths
use_cuda = torch.cuda.is_available()
device = torch.device("cuda:0" if use_cuda else "cpu")
if not (os.path.exists(CHECKPOINT) and os.path.isfile(CHECKPOINT)):
print("weights in wrong format or non-existant: \n\t{}".format(CHECKPOINT))
exit()
# loading the model
m = None
if args.model == "unet":
m = UNet(2, 2).to(device)
else:
m = simpleConvNet(2, 2).to(device)
print("loading model weights from \"{}\"".format(CHECKPOINT))
checkpoint = torch.load(CHECKPOINT)
m.load_state_dict(checkpoint['model_state_dict'])
m.to(device) # pushing weights to gpu
train_loss = checkpoint['train_loss']
test_loss = checkpoint['test_loss']
START = checkpoint['epoch']
scans = [os.path.join(root_dir, i) for i in os.listdir(os.path.abspath(root_dir)) if
os.path.isdir(os.path.join(os.path.abspath(root_dir), i)) and "_" in i]
if len(scans) == 0:
print("no scan data found (folder name must be in format mmddhhmmss_x with x beeing the serialnumber")
exit()
else:
print("found {} scan(s) in datafolder".format(len(scans)))
train_params = {'batch_size': 1,
'shuffle': False,
'num_workers': 1}
# insert mean and std of trainingsrun here
mean = [0.08751187324523926, 71.52521623883929]
std = [71.52521623883929]
labelsNorm = transforms.Normalize(mean=mean, std=std)
labelsNorm = None
# trainset part of this dataset
evaldata1 = CONRADataset(root_dir,
True,
device=device,
precompute=True,
transform=labelsNorm)
# testset part of this dataset
evaldata2 = CONRADataset(root_dir,
False,
device=device,
precompute=True,
transform=labelsNorm)
evalset1 = DataLoader(evaldata1, **train_params)
evalset2 = DataLoader(evaldata2, **train_params)
print("feedind data through network...")
with torch.no_grad():
# c, p, y, x
iodine = np.zeros((200, 480, 620))
water = np.zeros((200, 480, 620))
le = np.zeros((200, 480, 620))
he = np.zeros((200, 480, 620))
gti = np.zeros((200, 480, 620))
gtw = np.zeros((200, 480, 620))
counter = 0
for p, mat in tqdm(evalset1):
if counter > 199:
break
p, mat = p.to(device=device, dtype=torch.float), mat.to(device=device, dtype=torch.float)
pred = m(p)
p = p.cpu().numpy()
mat = mat.cpu().numpy()
pred = pred.cpu().numpy()
iodine[counter] = pred[0, 0, :, :]
water[counter] = pred[0, 1, :, :]
le[counter] = p[0, 0, :, :]
he[counter] = p[0, 1, :, :]
gti[counter] = mat[0, 0, :, :]
gtw[counter] = mat[0, 1, :, :]
counter += 1
for p, mat in tqdm(evalset2):
if counter > 199:
break
p, mat = p.to(device=device, dtype=torch.float), mat.to(device=device, dtype=torch.float)
pred = m(p)
p = p.cpu()
mat = mat.cpu()
pred = pred.cpu()
iodine[counter] = pred.data[0, 0, :, :]
water[counter] = pred.data[0, 1, :, :]
le[counter] = p.data[0, 0, :, :]
he[counter] = p.data[0, 1, :, :]
gti[counter] = mat.data[0, 0, :, :]
gtw[counter] = mat.data[0, 1, :, :]
counter += 1
if save:
print("saving image stack")
size_str = '620x480x200'
fle_iodine = args.target + 'iodine_pred_' + size_str + '.raw'
fle_water = args.target + 'water_pred_' + size_str + '.raw'
fle_le = args.target + 'le_' + size_str + '.raw'
fle_he = args.target + 'he_' + size_str + '.raw'
fle_gtiod = args.target + 'iodine_truth_' + size_str + '.raw'
fle_gtwater = args.target + 'water_truth_' + size_str + '.raw'
print(fle_iodine)
with open(fle_iodine, 'w+'):
print('iodine prediction type: ' + str(iodine.dtype) + ' max/min: ' + str(np.max(iodine)) + '/' + str(np.min(iodine)))
iodine.astype('float32').tofile(fle_iodine)
# saving water image
with open(fle_water, 'w+'):
print('water prediction type: ' + str(water.dtype) + ' max/min: ' + str(np.max(water)) + '/' + str(np.min(water)))
water.astype('float32').tofile(fle_water)
# saving le image
with open(fle_le, 'w+'):
print('le image type: ' + str(le.dtype) + ' max/min: ' + str(np.max(le)) + '/' + str(np.min(le)))
le.astype('float32').tofile(fle_le)
# saving he image
with open(fle_he, 'w+'):
print('he image type: ' + str(he.dtype) + ' max/min: ' + str(np.max(he)) + '/' + str(np.min(he)))
he.astype('float32').tofile(fle_he)
# saving gt iodine image
with open(fle_gtiod, 'w+'):
print('truth iodine type: ' + str(gti.dtype) + ' max/min: ' + str(np.max(gti)) + '/' + str(np.min(gti)))
gti.astype('float32').tofile(fle_gtiod)
#saving gt water image
with open(fle_gtwater, 'w+'):
print('truth water type: ' + str(gtw.dtype) + ' max/min: ' + str(np.max(gtw)) + '/' + str(np.min(gtw)))
gtw.astype('float32').tofile(fle_gtwater)
else:
print("saving disabled!")
#f = np.fromfile(file=file, dtype=dt).newbyteorder().byteswap()
# np.save(fle_iodine, iodine, dtype=dt)
# np.save(fle_water, water, dtype=dt)
# np.save(fle_le, le, dtype=dt)
# np.save(fle_he, he, dtype=dt)
# np.save(fle_gtiod, gti, dtype=dt)
# np.save(fle_gtwater, gtw, dtype=dt)
### computing ssim and r index over dataset
print("computing SSIM and R for all projections...")
ssiodlist = []
sswaterlist = []
riodlist = []
rwaterlist = []
for p in trange(200):
pred = iodine[p]
gt = gti[p]
ssiodlist.append(ssim(pred, gt))
riodlist.append(np.corrcoef(pred, gt)[1, 0])
for p in trange(200):
pred = water[p]
gt = gtw[p]
sswaterlist.append(ssim(pred, gt))
rwaterlist.append(np.corrcoef(pred, gt)[1, 0])
print("computing SSIM and R statistics")
meaniodSSIM, stdiodSSIM= np.mean(ssiodlist), np.std(ssiodlist)
meanwaterSSIM, stdwaterSSIM = np.mean(sswaterlist), np.std(sswaterlist)
meaniodR, stediodR = np.mean(riodlist), np.std(riodlist)
meanwaterR, stdwaterR = np.mean(rwaterlist), np.std(rwaterlist)
print("Iodine: \n\tssim (mean, std): {} / {}\n\tR (mean, std): {} / {}".format(meaniodSSIM, stdiodSSIM, meaniodR, stediodR))
print("Water: \n\tssim (mean, std): {} / {}\n\tR (mean, std): {} / {}".format(meanwaterSSIM, stdwaterSSIM, meanwaterR, stdwaterR))
exit(0)
# poly = np.vstack((p.numpy()[0], np.zeros((1, 480, 620)))).transpose((1,2,0))
# materials = np.vstack((mat.numpy()[0], np.zeros((1, 480, 620)))).transpose((1,2,0))
# predictions = np.vstack((pred.numpy()[0], np.zeros((1, 480, 620)))).transpose((1,2,0))
# poly120 = np.vstack((p.numpy()[0, 0, :, :], np.zeros((1, 480, 620)))).transpose((1,2,0))
# poly80 = np.vstack((p.numpy()[0, 1, :, :], np.zeros((1, 480, 620)))).transpose((1,2,0))
# iod = np.vstack((mat.numpy()[0, 1, :, :], np.zeros((1, 480, 620)))).transpose((1,2,0))
# water = np.vstack((mat.numpy()[0, 0, :, :], np.zeros((1, 480, 620)))).transpose((1,2,0))
# prediod = np.vstack((pred.numpy()[0, 1, :, :], np.zeros((1, 480, 620)))).transpose((1,2,0))
# predwater = np.vstack((pred.numpy()[0, 0, :, :], np.zeros((1, 480, 620)))).transpose((1,2,0))
#
#
#
# plt.imshow(poly)
# plt.title("poly")
# plt.show()
# plt.imshow(materials)
# plt.title("materials")
# plt.show()
# plt.imshow(predictions)
# plt.title("predictions")
# plt.show()
# exit()
# for s in scans:
# print(s)
# files = glob.glob(os.path.abspath(s) + "/**/*.raw")
# x, y, p = detectSizesFromFilename(files[0])
# poly, mat = readToNumpy(files, x, y, p, 2, 2)
# print("shape of mat is " + str(mat.shape))
# print("max value is " + str(poly.max()))
#
# #pred = eval(poly, m, device)
# _ = plt.hist(mat.flatten(), bins='auto')
# plt.title("material histogram")
# plt.show()
# #print("max value of prediction is " + str(pred.max()))
#
# iodine = multi_slice_viewer(mat[0], "poly80 prediction")
# # water = multi_slice_viewer(pred[1], "water prediction")
# # tiod = multi_slice_viewer(mat[0], "iodine ground truth")
# # twater = multi_slice_viewer(mat[1], "water ground truth")
# iodine.show()
# # water.show()
# # tiod.show()
# # twater.show()
#
# yn = None
# while(True):
# yn = input("show next scan? [y], n")
# if yn == 'y' or yn == "":
# yn = False
# break
# elif yn == 'n':
# yn = True
# break
# else:
# print('not understood. either enter, y or n')
#
# if yn:
# break