├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── test_relabeling_2D.ipynb └── test_relabeling_3D.ipynb ├── pyproject.toml ├── relabel ├── __init__.py ├── chunkops.py ├── relabeling.py └── utils.py └── tests ├── __init__.py ├── fixtures.py ├── samples ├── ann_2d.npz ├── input_2d.npz ├── input_3d.npz ├── ovp_input_2d.npz ├── ovp_input_3d.npz ├── rem_2d.npz ├── rem_3d.npz ├── seg_2d.npz ├── seg_3d.npz ├── sort_2d.npz ├── sort_3d.npz ├── trim_2d.npz └── trim_3d.npz └── test_relabeling.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/README.md -------------------------------------------------------------------------------- /examples/test_relabeling_2D.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/examples/test_relabeling_2D.ipynb -------------------------------------------------------------------------------- /examples/test_relabeling_3D.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/examples/test_relabeling_3D.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/pyproject.toml -------------------------------------------------------------------------------- /relabel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/relabel/__init__.py -------------------------------------------------------------------------------- /relabel/chunkops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/relabel/chunkops.py -------------------------------------------------------------------------------- /relabel/relabeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/relabel/relabeling.py -------------------------------------------------------------------------------- /relabel/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/relabel/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/fixtures.py -------------------------------------------------------------------------------- /tests/samples/ann_2d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/samples/ann_2d.npz -------------------------------------------------------------------------------- /tests/samples/input_2d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/samples/input_2d.npz -------------------------------------------------------------------------------- /tests/samples/input_3d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/samples/input_3d.npz -------------------------------------------------------------------------------- /tests/samples/ovp_input_2d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/samples/ovp_input_2d.npz -------------------------------------------------------------------------------- /tests/samples/ovp_input_3d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/samples/ovp_input_3d.npz -------------------------------------------------------------------------------- /tests/samples/rem_2d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/samples/rem_2d.npz -------------------------------------------------------------------------------- /tests/samples/rem_3d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/samples/rem_3d.npz -------------------------------------------------------------------------------- /tests/samples/seg_2d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/samples/seg_2d.npz -------------------------------------------------------------------------------- /tests/samples/seg_3d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/samples/seg_3d.npz -------------------------------------------------------------------------------- /tests/samples/sort_2d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/samples/sort_2d.npz -------------------------------------------------------------------------------- /tests/samples/sort_3d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/samples/sort_3d.npz -------------------------------------------------------------------------------- /tests/samples/trim_2d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/samples/trim_2d.npz -------------------------------------------------------------------------------- /tests/samples/trim_3d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/samples/trim_3d.npz -------------------------------------------------------------------------------- /tests/test_relabeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheJacksonLaboratory/dask_relabeling/HEAD/tests/test_relabeling.py --------------------------------------------------------------------------------