File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
mantidimaging/gui/windows/live_viewer Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ def find_images(self, directory: Path) -> list[Image_Data]:
230
230
for file_path in directory .iterdir ():
231
231
if self ._is_image_file (file_path .name ):
232
232
try :
233
- image_obj = Image_Data (file_path , create_delayed_array = self . create_delayed_array )
233
+ image_obj = Image_Data (file_path )
234
234
image_files .append (image_obj )
235
235
except FileNotFoundError :
236
236
continue
@@ -306,9 +306,6 @@ def _handle_directory_change(self) -> None:
306
306
self .update_recent_watcher (images [- 1 :])
307
307
self .image_changed .emit (images , dask_image_stack )
308
308
309
- # arrsum = dask.array.sum(dask_image_stack.delayed_stack)
310
- # print(f"{arrsum.compute()=}")
311
-
312
309
@staticmethod
313
310
def _is_image_file (file_name : str ) -> bool :
314
311
"""
You can’t perform that action at this time.
0 commit comments