Skip to content

Commit

Permalink
refactor: Update the order of ROI Mask algorithms to be the same as i…
Browse files Browse the repository at this point in the history
…n older PartSeg versions (#600)
  • Loading branch information
Czaki authored Apr 27, 2022
1 parent 90cca9b commit 363ed39
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

- Refactor the creation batch plan widgets and add tests for it (#587)
- Drop napari bellow 0.4.12 (#592)
- Update the order of ROI Mask algorithms to be the same as in older PartSeg versions (#600)

## 0.14.0

Expand Down
6 changes: 3 additions & 3 deletions package/PartSegCore/mask/algorithm_description.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ class MaskAlgorithmSelection(
"""Register for segmentation method visible in PartSeg ROI Mask."""


MaskAlgorithmSelection.register(AutoThresholdAlgorithm)
MaskAlgorithmSelection.register(CellFromNucleusFlow)
MaskAlgorithmSelection.register(MorphologicalWatershed)
MaskAlgorithmSelection.register(ThresholdAlgorithm)
MaskAlgorithmSelection.register(ThresholdFlowAlgorithm)
MaskAlgorithmSelection.register(ThresholdPreview)
MaskAlgorithmSelection.register(AutoThresholdAlgorithm)
MaskAlgorithmSelection.register(CellFromNucleusFlow)
MaskAlgorithmSelection.register(MorphologicalWatershed)


def __getattr__(name): # pragma: no cover
Expand Down

0 comments on commit 363ed39

Please sign in to comment.