You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: myoquant/__main__.py
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -190,16 +190,16 @@ def he_analysis(
190
190
help="Approximative single cell diameter in pixel for CellPose detection. If not specified, Cellpose will try to deduce it.",
191
191
),
192
192
nms_thresh: float=typer.Option(
193
-
0.4,
194
-
help="NMS Threshold for Stardist nuclei detection.",
193
+
0.4, help="NMS Threshold for Stardist nuclei detection.", min=0, max=1
195
194
),
196
195
prob_thresh: float=typer.Option(
197
-
0.5,
198
-
help="Probability Threshold for Stardist nuclei detection.",
196
+
0.5, help="Probability Threshold for Stardist nuclei detection.", min=0.5, max=1
199
197
),
200
198
eccentricity_thresh: float=typer.Option(
201
199
0.75,
202
-
help="Eccentricity threshold value for a nuclei to be considered as internalized during nuclei classification.",
200
+
help="Eccentricity threshold value for a nuclei to be considered as internalized during nuclei classification. When very close to 1 almost all nuclei are considered as internalized.",
201
+
min=0,
202
+
max=1,
203
203
),
204
204
):
205
205
"""Run the HE analysis and quantification on the image."""
0 commit comments