Skip to content
Snippets Groups Projects
Commit 4f8727e5 authored by s214735's avatar s214735
Browse files

fix

parent a4a31fe3
Branches
No related tags found
1 merge request!144Docstrings
...@@ -2,15 +2,15 @@ import matplotlib.pyplot as plt ...@@ -2,15 +2,15 @@ import matplotlib.pyplot as plt
import numpy as np import numpy as np
import qim3d import qim3d
from qim3d.utils._logger import log from qim3d.utils._logger import log
from segmentation._connected_components import CC
def plot_cc( def plot_cc(
connected_components, connected_components: CC,
component_indexs: list | tuple = None, component_indexs: list | tuple = None,
max_cc_to_plot=32, max_cc_to_plot: int = 32,
overlay=None, overlay: np.ndarray = None,
crop=False, crop: bool = False,
display_figure=True, display_figure: bool = True,
color_map: str = "viridis", color_map: str = "viridis",
value_min: float = None, value_min: float = None,
value_max: float = None, value_max: float = None,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment