From 89e71dc88b6cfa7f76360d676fe358b5b904e492 Mon Sep 17 00:00:00 2001 From: C-Achard Date: Fri, 26 May 2023 15:51:34 +0200 Subject: [PATCH] Update plugin_model_inference.py --- napari_cellseg3d/code_plugins/plugin_model_inference.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/napari_cellseg3d/code_plugins/plugin_model_inference.py b/napari_cellseg3d/code_plugins/plugin_model_inference.py index 0dca3ec8..2693b178 100644 --- a/napari_cellseg3d/code_plugins/plugin_model_inference.py +++ b/napari_cellseg3d/code_plugins/plugin_model_inference.py @@ -34,7 +34,7 @@ def __init__(self, viewer: "napari.viewer.Viewer", parent=None): * An option to load custom weights for the selected model (e.g. from training module) - * Post-processing : + * Additional options : * A box to select if data is anisotropic, if checked, asks for resolution in micron for each axis * A box to choose whether to threshold, if checked asks for a threshold between 0 and 1 @@ -406,7 +406,7 @@ def _build(self): ################################# # post proc group post_proc_group, post_proc_layout = ui.make_group( - "Post-processing", parent=self + "Additional options", parent=self ) self.thresholding_slider.container.setVisible(False)