Skip to content

supported_struct_axis

StructN2V axes supported by CAREamics.

SupportedStructAxis #

Bases: str, BaseEnum

Supported structN2V mask axes.

Attributes:

Name Type Description
HORIZONTAL str

Horizontal axis.

VERTICAL str

Vertical axis.

NONE str

No axis, the mask is not applied.

Source code in src/careamics/config/support/supported_struct_axis.py
class SupportedStructAxis(str, BaseEnum):
    """Supported structN2V mask axes.

    Attributes
    ----------
    HORIZONTAL : str
        Horizontal axis.
    VERTICAL : str
        Vertical axis.
    NONE : str
        No axis, the mask is not applied.
    """

    HORIZONTAL = "horizontal"
    VERTICAL = "vertical"
    NONE = "none"