Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update line interval time immediately #906

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading