├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── bin └── mvregfus_run.py ├── images ├── multi_view_example1.png └── multi_view_example2.png ├── mv_environment.yml ├── mv_environment_windows.yml ├── mvregfus ├── __init__.py ├── czifile.py ├── czifile_patch.py ├── dask_utils.py ├── image_array.py ├── imaris.py ├── io_utils.py ├── misc.py ├── multiview.py ├── mv_graph.py ├── mv_utils.py ├── mv_visualization.py └── tifffile.py ├── notebooks ├── MVRegFus_stitching.ipynb ├── MVRegFus_stitching2_33.ipynb ├── MVRegFus_stitching2_max.ipynb ├── MVRegFus_stitching3_max.ipynb ├── MVRegFus_stitching3_max_real2d.ipynb ├── MVRegFus_stitching3_max_real2d_max.ipynb ├── MVRegFus_stitching3_max_real2d_test_suite.ipynb └── check_run.ipynb ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/TODO.md -------------------------------------------------------------------------------- /bin/mvregfus_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/bin/mvregfus_run.py -------------------------------------------------------------------------------- /images/multi_view_example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/images/multi_view_example1.png -------------------------------------------------------------------------------- /images/multi_view_example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/images/multi_view_example2.png -------------------------------------------------------------------------------- /mv_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mv_environment.yml -------------------------------------------------------------------------------- /mv_environment_windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mv_environment_windows.yml -------------------------------------------------------------------------------- /mvregfus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mvregfus/__init__.py -------------------------------------------------------------------------------- /mvregfus/czifile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mvregfus/czifile.py -------------------------------------------------------------------------------- /mvregfus/czifile_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mvregfus/czifile_patch.py -------------------------------------------------------------------------------- /mvregfus/dask_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mvregfus/dask_utils.py -------------------------------------------------------------------------------- /mvregfus/image_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mvregfus/image_array.py -------------------------------------------------------------------------------- /mvregfus/imaris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mvregfus/imaris.py -------------------------------------------------------------------------------- /mvregfus/io_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mvregfus/io_utils.py -------------------------------------------------------------------------------- /mvregfus/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mvregfus/misc.py -------------------------------------------------------------------------------- /mvregfus/multiview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mvregfus/multiview.py -------------------------------------------------------------------------------- /mvregfus/mv_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mvregfus/mv_graph.py -------------------------------------------------------------------------------- /mvregfus/mv_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mvregfus/mv_utils.py -------------------------------------------------------------------------------- /mvregfus/mv_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mvregfus/mv_visualization.py -------------------------------------------------------------------------------- /mvregfus/tifffile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/mvregfus/tifffile.py -------------------------------------------------------------------------------- /notebooks/MVRegFus_stitching.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/notebooks/MVRegFus_stitching.ipynb -------------------------------------------------------------------------------- /notebooks/MVRegFus_stitching2_33.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/notebooks/MVRegFus_stitching2_33.ipynb -------------------------------------------------------------------------------- /notebooks/MVRegFus_stitching2_max.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/notebooks/MVRegFus_stitching2_max.ipynb -------------------------------------------------------------------------------- /notebooks/MVRegFus_stitching3_max.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/notebooks/MVRegFus_stitching3_max.ipynb -------------------------------------------------------------------------------- /notebooks/MVRegFus_stitching3_max_real2d.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/notebooks/MVRegFus_stitching3_max_real2d.ipynb -------------------------------------------------------------------------------- /notebooks/MVRegFus_stitching3_max_real2d_max.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/notebooks/MVRegFus_stitching3_max_real2d_max.ipynb -------------------------------------------------------------------------------- /notebooks/MVRegFus_stitching3_max_real2d_test_suite.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/notebooks/MVRegFus_stitching3_max_real2d_test_suite.ipynb -------------------------------------------------------------------------------- /notebooks/check_run.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/notebooks/check_run.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-albert/MVRegFus/HEAD/setup.py --------------------------------------------------------------------------------