diff --git a/src/navigate/model/devices/camera/camera_photometrics.py b/src/navigate/model/devices/camera/camera_photometrics.py index b682dd957..5de4b3c58 100644 --- a/src/navigate/model/devices/camera/camera_photometrics.py +++ b/src/navigate/model/devices/camera/camera_photometrics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021-2022 The University of Texas Southwestern Medical Center. +# Copyright (c) 2021-2024 The University of Texas Southwestern Medical Center. # All rights reserved. # Redistribution and use in source and binary forms, with or without # modification, are permitted for academic and research use only (subject to the @@ -105,6 +105,11 @@ def __init__(self, microscope_name, device_connection, configuration): """ super().__init__(microscope_name, device_connection, configuration) + self.camera_parameters["supported_readout_directions"] = [ + "Top-to-Bottom", + "Bottom-to-Top", + ] + #: int: Exposure Time in milliseconds self._exposuretime = 20 @@ -274,6 +279,7 @@ def set_line_interval(self, line_interval_time): """ # todo calculate line delay from scandelay self._scandelay = line_interval_time + self.camera_controller.prog_scan_line_delay = line_interval_time def calculate_light_sheet_exposure_time( self, full_chip_exposure_time, shutter_width