├── .github └── workflows │ ├── documentation_main.yml │ ├── documentation_release.yml │ └── test_and_deploy.yml ├── .gitignore ├── .napari-hub ├── DESCRIPTION.md └── config.yml ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── contributing.md ├── docs_requirements.txt ├── images │ ├── demo_3d.mp4 │ ├── logo.png │ ├── naming_convention_example.png │ ├── napari-stitcher-loaded-mosaic-annotated-inkscape.svg │ ├── napari-stitcher-loaded-mosaic-annotated.png │ ├── napari-stitcher-loaded-mosaic.png │ ├── preposition.gif │ ├── preposition3d.gif │ └── preposition_mosaic.gif ├── index.md ├── installation.md ├── loading.md ├── naming_convention.md ├── prearrangement.md ├── scripting.md └── writing.md ├── mkdocs.yml ├── pyproject.toml ├── setup.cfg ├── src └── napari_stitcher │ ├── __init__.py │ ├── _mosaic_widget.py │ ├── _reader.py │ ├── _sample_data.py │ ├── _stitcher_widget.py │ ├── _tests │ ├── __init__.py │ ├── test_mosaic_widget.py │ ├── test_reader.py │ ├── test_stitcher_widget.py │ ├── test_viewer_utils.py │ └── test_writer.py │ ├── _utils.py │ ├── _writer.py │ ├── napari.yaml │ └── viewer_utils.py └── tox.ini /.github/workflows/documentation_main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/.github/workflows/documentation_main.yml -------------------------------------------------------------------------------- /.github/workflows/documentation_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/.github/workflows/documentation_release.yml -------------------------------------------------------------------------------- /.github/workflows/test_and_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/.github/workflows/test_and_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.napari-hub/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/.napari-hub/DESCRIPTION.md -------------------------------------------------------------------------------- /.napari-hub/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/.napari-hub/config.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/README.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/docs_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/docs_requirements.txt -------------------------------------------------------------------------------- /docs/images/demo_3d.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/images/demo_3d.mp4 -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/images/naming_convention_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/images/naming_convention_example.png -------------------------------------------------------------------------------- /docs/images/napari-stitcher-loaded-mosaic-annotated-inkscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/images/napari-stitcher-loaded-mosaic-annotated-inkscape.svg -------------------------------------------------------------------------------- /docs/images/napari-stitcher-loaded-mosaic-annotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/images/napari-stitcher-loaded-mosaic-annotated.png -------------------------------------------------------------------------------- /docs/images/napari-stitcher-loaded-mosaic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/images/napari-stitcher-loaded-mosaic.png -------------------------------------------------------------------------------- /docs/images/preposition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/images/preposition.gif -------------------------------------------------------------------------------- /docs/images/preposition3d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/images/preposition3d.gif -------------------------------------------------------------------------------- /docs/images/preposition_mosaic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/images/preposition_mosaic.gif -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/loading.md -------------------------------------------------------------------------------- /docs/naming_convention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/naming_convention.md -------------------------------------------------------------------------------- /docs/prearrangement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/prearrangement.md -------------------------------------------------------------------------------- /docs/scripting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/scripting.md -------------------------------------------------------------------------------- /docs/writing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/docs/writing.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/napari_stitcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/src/napari_stitcher/__init__.py -------------------------------------------------------------------------------- /src/napari_stitcher/_mosaic_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/src/napari_stitcher/_mosaic_widget.py -------------------------------------------------------------------------------- /src/napari_stitcher/_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/src/napari_stitcher/_reader.py -------------------------------------------------------------------------------- /src/napari_stitcher/_sample_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/src/napari_stitcher/_sample_data.py -------------------------------------------------------------------------------- /src/napari_stitcher/_stitcher_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/src/napari_stitcher/_stitcher_widget.py -------------------------------------------------------------------------------- /src/napari_stitcher/_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/napari_stitcher/_tests/test_mosaic_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/src/napari_stitcher/_tests/test_mosaic_widget.py -------------------------------------------------------------------------------- /src/napari_stitcher/_tests/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/src/napari_stitcher/_tests/test_reader.py -------------------------------------------------------------------------------- /src/napari_stitcher/_tests/test_stitcher_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/src/napari_stitcher/_tests/test_stitcher_widget.py -------------------------------------------------------------------------------- /src/napari_stitcher/_tests/test_viewer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/src/napari_stitcher/_tests/test_viewer_utils.py -------------------------------------------------------------------------------- /src/napari_stitcher/_tests/test_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/src/napari_stitcher/_tests/test_writer.py -------------------------------------------------------------------------------- /src/napari_stitcher/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/src/napari_stitcher/_utils.py -------------------------------------------------------------------------------- /src/napari_stitcher/_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/src/napari_stitcher/_writer.py -------------------------------------------------------------------------------- /src/napari_stitcher/napari.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/src/napari_stitcher/napari.yaml -------------------------------------------------------------------------------- /src/napari_stitcher/viewer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/src/napari_stitcher/viewer_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiview-stitcher/napari-stitcher/HEAD/tox.ini --------------------------------------------------------------------------------