From 39e35feaa8ebc93cbba9c5ed72d20dbc817df5db Mon Sep 17 00:00:00 2001 From: David Hammer <dhammer@mailbox.org> Date: Thu, 27 Jan 2022 16:44:43 +0100 Subject: [PATCH] Use cell table rather than image data to guess number of cells --- src/calng/base_correction.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/calng/base_correction.py b/src/calng/base_correction.py index ac50550e..1f4135bc 100644 --- a/src/calng/base_correction.py +++ b/src/calng/base_correction.py @@ -974,19 +974,13 @@ class BaseCorrection(PythonDevice): correction_cell_num = self._schema_cache["constantParameters.memoryCells"] cell_table_max = np.max(cell_table) - if cell_table_max >= correction_cell_num: - self.log_status_info( - f"Max cell ID ({cell_table_max}) exceeds range for loaded " - f"constants ({correction_cell_num} cells). Some frames will not be " - "corrected." - ) image_data = data_hash.get(self._image_data_path) - if image_data.shape[0] != self._schema_cache["dataFormat.memoryCells"]: + if cell_table.size != self._schema_cache["dataFormat.memoryCells"]: self.log_status_info( f"Updating new input shape {image_data.shape}, updating buffers" ) - self.set("dataFormat.memoryCells", image_data.shape[0]) + self.set("dataFormat.memoryCells", cell_table.size) with self._buffer_lock: self._update_frame_filter() -- GitLab