Rearrange tabs in napari
Closed this issue · 2 comments
lorenzocerrone commented
Hey @qin-yu, I would like to propose the following changes.
- merge the
predictions
andsegmentation
in a singleExtra workflows
(to save space for the upcoming training/dataset tab) - remove the
watershed
insegmentation
and add back the functionalities inMain
- Always use the dropdown menu for
Extra workflow
(i.e., remove theTOO_MANY_WIDGES = False
check). Having all the widgets open adds a lot of clutter to the UI.
qin-yu commented
- merge the
predictions
andsegmentation
in a singleExtra workflows
(to save space for the upcoming training/dataset tab)- remove the
watershed
insegmentation
and add back the functionalities inMain
These changes doesn't really affect me and might be new-user-friendly.
- Always use the dropdown menu for
Extra workflow
(i.e., remove theTOO_MANY_WIDGES = False
check). Having all the widgets open adds a lot of clutter to the UI.
I would like to have easier access to all widgets for more direct feedback ("on_change" events) during development, I propose to have an environment variable to allow this (that's why I did a TOO_MANY_WIDGES
, but didn't have time to finish)
The workflow for me to segment or to show new users how to segment using PlantSeg is the following:
- (Add a model)
- Load an image
- (Gaussian blur)
- Run prediction
- Run watershed
- Run filter (the one I developed)
- Run GASP
- Run filter
- Export segmentation
So having "Data", "Main", and "Extra" doesn't add complexity for inference. I would say your proposal is nice overall.