/LabelSys

A medical image segmentation labeling tool

Primary LanguagePythonOtherNOASSERTION

README

To use label reading API:

import typing
from labelSys.utils import LabelSysReader

label_dirs: typing.List[str]    # Result folders (list of folder paths) to inspect
i: int                          # Data index

reader = LabelSysReader(label_dirs)
data_i = reader[i]

Installation

install with pip

make
pip install .

Binary distribution

python build.py

Usage

labelSys [config_file_path]

For CLI arguments see: labelSys -h

Known issues:

  • Saving while another saving thread is running will raise a permission error.