├── .github └── workflows │ └── test_and_deploy.yml ├── .gitignore ├── .napari └── config.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── napari_brainreg ├── __init__.py ├── _version.py ├── brainreg.py ├── brainreg_standard.py └── utils.py ├── resources ├── atlas_space.gif └── sample_space.gif ├── setup.py ├── tests ├── __init__.py ├── data │ ├── boundaries.tiff │ ├── brainreg.json │ ├── downsampled.tiff │ ├── downsampled_channel0.tiff │ ├── downsampled_channel1.tiff │ ├── downsampled_standard.tiff │ ├── downsampled_standard_brain.tiff │ ├── registered_atlas.tiff │ └── registered_hemispheres.tiff ├── test_brainreg.py └── test_brainreg_standard.py └── tox.ini /.github/workflows/test_and_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/.github/workflows/test_and_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/.gitignore -------------------------------------------------------------------------------- /.napari/config.yml: -------------------------------------------------------------------------------- 1 | visibility: hidden 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/docs/make.bat -------------------------------------------------------------------------------- /napari_brainreg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/napari_brainreg/__init__.py -------------------------------------------------------------------------------- /napari_brainreg/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/napari_brainreg/_version.py -------------------------------------------------------------------------------- /napari_brainreg/brainreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/napari_brainreg/brainreg.py -------------------------------------------------------------------------------- /napari_brainreg/brainreg_standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/napari_brainreg/brainreg_standard.py -------------------------------------------------------------------------------- /napari_brainreg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/napari_brainreg/utils.py -------------------------------------------------------------------------------- /resources/atlas_space.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/resources/atlas_space.gif -------------------------------------------------------------------------------- /resources/sample_space.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/resources/sample_space.gif -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/boundaries.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/tests/data/boundaries.tiff -------------------------------------------------------------------------------- /tests/data/brainreg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/tests/data/brainreg.json -------------------------------------------------------------------------------- /tests/data/downsampled.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/tests/data/downsampled.tiff -------------------------------------------------------------------------------- /tests/data/downsampled_channel0.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/tests/data/downsampled_channel0.tiff -------------------------------------------------------------------------------- /tests/data/downsampled_channel1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/tests/data/downsampled_channel1.tiff -------------------------------------------------------------------------------- /tests/data/downsampled_standard.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/tests/data/downsampled_standard.tiff -------------------------------------------------------------------------------- /tests/data/downsampled_standard_brain.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/tests/data/downsampled_standard_brain.tiff -------------------------------------------------------------------------------- /tests/data/registered_atlas.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/tests/data/registered_atlas.tiff -------------------------------------------------------------------------------- /tests/data/registered_hemispheres.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/tests/data/registered_hemispheres.tiff -------------------------------------------------------------------------------- /tests/test_brainreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/tests/test_brainreg.py -------------------------------------------------------------------------------- /tests/test_brainreg_standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/tests/test_brainreg_standard.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/napari-brainreg/HEAD/tox.ini --------------------------------------------------------------------------------