Tags: TheDeanLab/navigate
Tags
Remove frames_to_average from camera settings (#1195) Eliminate the deprecated frames_to_average parameter across the project. Removed default and YAML entry, stopped validating/parsing it in config verification, removed related UI widget/label and controller handling, and updated tests to reflect its removal. Files touched: src/navigate/config/config.py, src/navigate/config/experiment.yml, src/navigate/controller/sub_controllers/camera_settings.py, src/navigate/view/main_window_content/camera_tab.py, and related tests.
Remove unnecessary sleep and add performance TODO (#1158) * Remove unnecessary sleep and add performance TODO Removed a redundant time.sleep call in SyntheticStage's move_absolute method to improve performance. Added a TODO comment in Microscope to highlight the cost of repeated dictionary lookups for image_mode during z-stack acquisition, suggesting future optimization. * Update synthetic.py