-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostprocess_spectra.py
364 lines (220 loc) · 9.74 KB
/
postprocess_spectra.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
# -*- coding: utf-8 -*-
"""
Created on Wed Jan 29 14:44:17 2025
@author: chiliaeva
"""
import pickle
import os
import numpy as np
import matplotlib as mpl
import matplotlib.pyplot as plt
import matplotlib.axes as axs
import cv2
from preprocess_ref_spectra import func620, func634, func_fit
from spas.metadata import read_metadata
legend_on = True
fontsize = 16
mpl.rcParams['lines.linewidth'] = 2
mpl.rcParams['xtick.labelsize'] = fontsize
mpl.rcParams['ytick.labelsize'] = fontsize
mpl.rcParams['font.size'] = fontsize
mpl.rcParams['axes.labelsize'] = fontsize
# mpl.rcParams['figure.figsize'] = 12, 6 # figure size in inches
mpl.rcParams['figure.figsize'] = 12, 12 # figure size in inches
#%%
savefig_spectrum = True
savefig_map = True
type_reco = 'had_reco'
# Get fit data
# root = 'C:/Users/chiliaeva/Documents/Resultats_traitement/'
root = 'C:/'
# root = 'D:/'
root_saveresults = root + 'fitresults_250327_full-spectra_spat-bin_3/'
# root_saveresults = root + 'fitresults_250206_narrow_lipo_binning_2/'
root_ref = root + 'ref/'
spat_bin = 3
root_savefig = root_saveresults + 'fig/'
if os.path.exists(root_savefig) == False :
os.mkdir(root_savefig)
# metadata file to get the wavelengths array :
file_metadata = root + 'wavelengths_metadata.json'
metadata, acquisition_params, spectrometer_params, dmd_params = read_metadata(file_metadata)
wavelengths = acquisition_params.wavelengths
# wvlgth_bin = np.load(root_saveresults + "wavelengths_mask_606-616.npy")
wvlgth_bin = np.load(root_saveresults + "wavelengths_mask_bin.npy")
num_patient = 'P68_'
num_biopsy = 'B1'
bounds_file = root_saveresults + 'bounds.pickle'
with open(bounds_file, 'rb') as pickle_file:
bounds = pickle.load(pickle_file)
#%% Import interpolated and normalized ref spectra
# Apply spectral mask and binning
spectr620 = np.load(root_ref + '_spectr620_interp.npy')
spectr634 = np.load(root_ref + '_spectr634_interp.npy')
########### IMPORT BAND MASK #######################################################
band_mask = np.loadtxt(root_saveresults + "band_mask.npy")
band_mask = list(map(bool,band_mask)) # convert to boolean array
########### IF BAND MASK IS NOT SAVED ##############################################
# fit_start = 614
# fit_stop = 650
# # cut_start = 606
# # cut_stop = 616
# # band_mask = (wavelengths <= cut_start) | (wavelengths >= cut_stop)
# band_mask = (wavelengths >= fit_start) & (wavelengths <= fit_stop) # redundant with main_fit --> SAVE band_mask in main_fit
# wavelengths = wavelengths[band_mask]
#####################################################################################
spectr620 = spectr620[band_mask]
spectr634 = spectr634[band_mask]
bin_width = 10 # redundant with main_fit (do the binning in the preprocessing program ?)
spectr620_bin = np.ndarray(spectr620.size // bin_width, dtype=float)
spectr634_bin = np.ndarray(spectr634.size // bin_width, dtype=float)
for i in range(spectr620_bin.size):
spectr620_bin[i] = spectr620[i*bin_width]
spectr634_bin[i] = spectr634[i*bin_width]
#%%
# Position of the spectrum to plot :
x = 13
y = 20
if type_reco == 'nn_reco' :
x = 4*x
y = 4*y
file_params = root_saveresults + num_patient + type_reco + '/' + num_biopsy + '_' + type_reco + '_fit_params.npy'
file_spectra = root_saveresults + num_patient + type_reco + '/' + num_biopsy + '_' + type_reco + '_spectrum_tab.npy'
params_tab = np.load(file_params)
spectrum_tab = np.load(file_spectra)
if type_reco == 'nn_reco':
params_tab = cv2.flip(params_tab, 0)
# Ref spectra multiplied by their respective coefficients
# spectr620_coef = spectr620_bin * params_tab[x,y,0] # params_tab[x,y,0] = coef 620
# spectr634_coef = spectr634_bin * params_tab[x,y,1]
spectr620_coef = func620(wvlgth_bin-params_tab[x,y,3])*params_tab[x,y,0]
spectr634_coef = func634(wvlgth_bin-params_tab[x,y,4])*params_tab[x,y,1]
spectr_lipo_coef = params_tab[x,y,2] * np.exp(-(params_tab[x,y,5]-wvlgth_bin)**2/params_tab[x,y,6]**2)
spectrum = spectrum_tab[x, y, :] # real spectrum
spectrum_fit = spectr620_coef + spectr634_coef + spectr_lipo_coef
#%% Plot the spectrum, fit, Pp620, Pp634, lipofuscin at position (x,y) on ax1
# plot absolute residuals on ax2
# plot relative residuals on ax3
fig, (ax1, ax2, ax3) = plt.subplots(3, 1, sharex=False)
# fig, ax1 = plt.subplots(1, 1, sharex=False)
fig.suptitle('Spectrum at position x=' + str(x) + ' y=' + str(y))
ax1.plot(wvlgth_bin, spectrum, label='spectrum', color='black')
ax1.plot(wvlgth_bin, spectrum_fit, label='fit', color='black', linestyle='dashed')
ax1.plot(wvlgth_bin, spectr620_coef, label='Pp620', color='red', linestyle='dashed')
ax1.plot(wvlgth_bin, spectr634_coef, label='Pp634', color='blue', linestyle='dashed')
ax1.plot(wvlgth_bin, spectr_lipo_coef, label='lipo', color='darkgreen', linestyle='dashed')
ax1.set_xlabel('wavelength (nm)')
ax1.set_ylabel((0, np.amax([np.amax(spectrum), np.amax(spectrum_fit)])))
ax1.grid()
ax2.plot(wvlgth_bin, spectrum-spectrum_fit, label='absolute residuals', color='black')
ax2.set_ylim((-80, 120))
ax2.grid()
ax3.plot(wvlgth_bin, (spectrum-spectrum_fit)/spectrum_fit, label='relative residuals', color='purple')
ax3.grid()
# ax3.set_ylim((-80, 120))
if legend_on == True :
fig.legend()
if savefig_spectrum == True :
fig.savefig(root_savefig + num_patient + num_biopsy + '_' + type_reco + '_x-' + str(x) + '_y-' + str(y) + '_spectrum.png', bbox_inches='tight')
#%% Show averaged area on the SNR map :
'''
IT DOESN'T WORK WIH CV2
# Load SNR map :
root_snr = root + 'snr/'
snr_file = root_snr + num_patient + num_biopsy + '_' + type_reco + '_snr_map.png'
start_point = (x-spat_bin, y-spat_bin)
stop_point = (x+spat_bin+1, y+spat_bin+1)
snr_map = cv2.imread(snr_file)
snr_map = cv2.rectangle(snr_map, start_point, stop_point, (0, 0, 255), 1)
cv2.imshow("SNR map", snr_map)
cv2.waitKey(0)
'''
#%% Show averaged area on the SNR map :
root_snr = root + 'snr/'
snr_file = root_snr + num_patient + num_biopsy + '_' + type_reco + '_snr_tab.npy'
snr_map = np.load(snr_file)
rect_x = x-spat_bin-0.5
rect_y = y-spat_bin-0.5
rect_width = 2*spat_bin+1
rect_height = 2*spat_bin+1
fig, ax = plt.subplots()
ax.imshow(snr_map)
ax.plot(y,x, "or")
rect = mpl.patches.Rectangle((rect_y, rect_x), rect_width, rect_height, linewidth=1, edgecolor='red', facecolor='none')
ax.add_patch(rect)
ax.grid()
if savefig_map:
fig.savefig(root_savefig + num_patient + num_biopsy + '_' + type_reco + '_x-' + str(x) + '_y-' + str(y) + '_avg-' + str(spat_bin) + '_snr_map.png', bbox_inches='tight')
#%% Show averaged area on PpIX620 and 634 maps :
mksize = 4
show_spectrum_pos = True
file_params = root_saveresults + num_patient + type_reco + '/' + num_biopsy + '_' + type_reco + '_fit_params.npy'
params_tab = np.load(file_params)
min_ppix = np.amin([np.nanmin(params_tab[:,:,0]), np.nanmin(params_tab[:,:,1])]) # minimum for Protoporphyrin IX colormap
max_ppix = np.amax([np.nanmax(params_tab[:,:,0]), np.nanmax(params_tab[:,:,1])])
def func_plot_map_nb(params_tab, nb, show_spectrum_pos, x, y, c_lim):
# plot abundance map number "nb"
plt.figure("map nb" + str(nb))
plt.clf()
plt.title("map nb" + str(nb))
plt.imshow(params_tab[:,:,nb])
if c_lim == True :
plt.clim(min_ppix, max_ppix)
plt.colorbar()
plt.grid()
if show_spectrum_pos == True :
plt.plot(y,x, "or", markersize = mksize)
c_lim = True
func_plot_map_nb(params_tab, 0, show_spectrum_pos, x, y, c_lim)
ax_map0 = plt.gca()
rect = mpl.patches.Rectangle((rect_y, rect_x), rect_width, rect_height, linewidth=1, edgecolor='red', facecolor='none')
ax_map0.add_patch(rect)
fig_map0 = plt.gcf()
fig_map0.savefig(root_savefig + num_patient + num_biopsy + '_' + type_reco + '_x-' + str(x) + '_y-' + str(y) + '_avg-' + str(spat_bin) + '_avg_PpiX620_map.png', bbox_inches='tight')
func_plot_map_nb(params_tab, 1, show_spectrum_pos, x, y, c_lim)
ax_map1 = plt.gca()
rect = mpl.patches.Rectangle((rect_y, rect_x), rect_width, rect_height, linewidth=1, edgecolor='red', facecolor='none')
ax_map1.add_patch(rect)
fig_map1 = plt.gcf()
fig_map1.savefig(root_savefig + num_patient + num_biopsy + '_' + type_reco + '_x-' + str(x) + '_y-' + str(y) + '_avg-' + str(spat_bin) + '_avg_PpiX634_map.png', bbox_inches='tight')
'''
fig_map, (ax1_map, ax2_map) = plt.subplots(1, 2, sharey=False)
fig_map.suptitle('PpIX 620 and 634 maps, averaged with spat_bin =' + str(spat_bin))
ax1_map.imshow(params_tab[:,:,0])
ax1_map.grid()
plt.imshow(coef_P620)
plt.grid()
plt.clim(min_ppix, max_ppix)
plt.colorbar()
plt.savefig(root_maps + num_patient + num_biops + '_' + type_reco + '_coef_P620_map.png', bbox_inches='tight')
plt.close()
'''
#%%
'''
#%% Quality criterion = sum of squared relative residues
rel_res = (spectrum-spectrum_fit)/spectrum_fit
res = np.sum(rel_res**2)
#%% Save 1 averaged spectrum for each measurement :
root_avg_spectra = root_savefig + 'avg_spectra/'
if os.path.exists(root_avg_spectra) == False :
os.mkdir(root_avg_spectra)
folders = os.listdir(root_saveresults)
for folder in folders :
if 'P' in folder :
num_patient = folder[0:4]
type_reco = folder[4:]
path = os.path.join(root_saveresults, folder)
files = os.listdir(path)
for file in files :
if 'spectrum_tab' in file :
num_biops = file[0:3]
subpath = os.path.join(path, file)
spectrum_tab = np.load(subpath)
avg_spectrum = np.nanmean(spectrum_tab, (0,1))
plt.figure()
plt.plot(wvlgth_bin, avg_spectrum)
plt.grid()
plt.savefig(root_avg_spectra + num_patient + num_biops + '_' + type_reco + '_spatial_avg_spectrum.png', bbox_inches='tight')
plt.close()
#%%
'''