Skip to content

Commit 3bc7b4e

Browse files
FLIM_adjust made False to make it look exactly as the data comes in
1 parent 804727f commit 3bc7b4e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PythonGUI_apps/Spectrum_analysis/Spectra_plot_fit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,10 +528,10 @@ def pub_ready_plot_export(self):
528528
param_selection = str(self.ui.comboBox.currentText())
529529
if param_selection == 'pk_pos': label = 'PL Peak Position (n.m.)'
530530
elif param_selection == 'fwhm': label = 'PL FWHM (n.m.)'
531-
cpm.plot_confocal(self.img, stepsize = data['Scan Parameters']['X step size (um)'], cmap=colormap, cbar_label=label,
531+
cpm.plot_confocal(self.img, FLIM_adjust = False, stepsize = data['Scan Parameters']['X step size (um)'], cmap=colormap, cbar_label=label,
532532
vmin=self.export_window.ui.vmin_spinBox.value(), vmax=self.export_window.ui.vmax_spinBox.value())
533533
elif str(self.export_window.ui.dataChannel_comboBox.currentText()) == "Raw":
534-
cpm.plot_confocal(self.sums, figsize=(10,10), stepsize = data['Scan Parameters']['X step size (um)'], cmap=colormap,
534+
cpm.plot_confocal(self.sums, FLIM_adjust = False, figsize=(10,10), stepsize = data['Scan Parameters']['X step size (um)'], cmap=colormap,
535535
vmin=self.export_window.ui.vmin_spinBox.value(), vmax=self.export_window.ui.vmax_spinBox.value())
536536
plt.tick_params(direction='out', length=8, width=3.5)
537537
plt.tight_layout()

0 commit comments

Comments
 (0)