Skip to content

Commit

Permalink
MAINT: Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
jwboth committed Nov 26, 2023
1 parent 26c1d45 commit df5c55c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/darsia/assistants/labels_assistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@

import darsia

# TODOs:
# Add possibility to manipulate the monochromatic input image for segmentation
# Test plain segmentation from start
# Add possibility to control the boundary during the segmentation


class LabelsAssistantMenu(darsia.BaseAssistant):
"""Module for LabelsAssistant to choose what to do with labels.
Expand All @@ -21,7 +26,6 @@ class LabelsAssistantMenu(darsia.BaseAssistant):
def __init__(
self, img: darsia.Image, background: Optional[darsia.Image] = None, **kwargs
) -> None:
# TODO decide how to handle kwargs
"""Initialize module.
Args:
Expand Down Expand Up @@ -301,7 +305,6 @@ def _call_menu(self) -> None:

# Call menu module
self.next_module = self.menu()
print("Next module:", self.next_module)

def _call_next_module(self) -> None:
"""Call next module."""
Expand Down

0 comments on commit df5c55c

Please sign in to comment.