Skip to content

Commit

Permalink
[fix] Set default autofunction period to 0 (#2946)
Browse files Browse the repository at this point in the history
If the period with which to run autofocus and autostigmation is not defined, it should not be run at all.
  • Loading branch information
tepals authored Nov 20, 2024
1 parent 2bad431 commit 4041a05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/odemis/gui/conf/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ def __init__(self):
self.default.set("acquisition", "fn_ptn", u"{datelng}-{timelng}")
self.default.set("acquisition", "fn_count", "0")
self.default.set("acquisition", "overlap", "0.06")
self.default.set("acquisition", "autostig_period", "5") # unit: number of ROA acquisitions
self.default.set("acquisition", "autofocus_period", "5") # unit: number of ROA acquisitions
self.default.set("acquisition", "autostig_period", "0") # unit: number of ROA acquisitions
self.default.set("acquisition", "autofocus_period", "0") # unit: number of ROA acquisitions
# Relative threshold on the minimum intensity of spots.
self.default.set("acquisition", "spot_grid_threshold", "0.5")

Expand Down

0 comments on commit 4041a05

Please sign in to comment.