Skip to content

Commit

Permalink
Merge pull request #906 from TheDeanLab/899-light-sheet-mode-synchron…
Browse files Browse the repository at this point in the history
…ization-issue-with-photometrics-iris-15
  • Loading branch information
AdvancedImagingUTSW authored May 27, 2024
2 parents 5a912c1 + f3380dd commit 5c7d175
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/navigate/model/devices/camera/camera_photometrics.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 5c7d175

Please sign in to comment.