├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── conf.py ├── images │ ├── image_001.jpeg │ ├── image_002.jpeg │ ├── image_003.jpeg │ ├── image_004.jpeg │ ├── image_005.jpeg │ ├── image_006.jpeg │ ├── image_007.jpeg │ ├── image_008.jpeg │ └── movie_001.gif ├── index.md ├── index.rst ├── installation.rst ├── make.bat ├── requirements.txt └── usage.rst ├── legacy ├── dock.py ├── launcher_simple.py ├── models.py ├── napari_view_simple.py ├── predict.py ├── train.py └── utils.py ├── notebooks └── train_and_pred_using_PHILOW.ipynb ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── src └── napari_philow │ ├── __init__.py │ ├── _annotation.py │ ├── _data_manager.py │ ├── _predict.py │ ├── _prediction.py │ ├── _selector.py │ ├── _tests │ ├── __init__.py │ └── test_dock_widget.py │ ├── _train_tf.py │ ├── _trainer.py │ ├── _utils.py │ ├── _utils_legacy.py │ ├── napari.yaml │ └── segmentation │ ├── __init__.py │ ├── data_augmentation.py │ ├── dataset.py │ ├── loss.py │ ├── metric.py │ ├── predict.py │ ├── train.py │ └── utils.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/images/image_001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/images/image_001.jpeg -------------------------------------------------------------------------------- /docs/images/image_002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/images/image_002.jpeg -------------------------------------------------------------------------------- /docs/images/image_003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/images/image_003.jpeg -------------------------------------------------------------------------------- /docs/images/image_004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/images/image_004.jpeg -------------------------------------------------------------------------------- /docs/images/image_005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/images/image_005.jpeg -------------------------------------------------------------------------------- /docs/images/image_006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/images/image_006.jpeg -------------------------------------------------------------------------------- /docs/images/image_007.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/images/image_007.jpeg -------------------------------------------------------------------------------- /docs/images/image_008.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/images/image_008.jpeg -------------------------------------------------------------------------------- /docs/images/movie_001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/images/movie_001.gif -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /legacy/dock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/legacy/dock.py -------------------------------------------------------------------------------- /legacy/launcher_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/legacy/launcher_simple.py -------------------------------------------------------------------------------- /legacy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/legacy/models.py -------------------------------------------------------------------------------- /legacy/napari_view_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/legacy/napari_view_simple.py -------------------------------------------------------------------------------- /legacy/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/legacy/predict.py -------------------------------------------------------------------------------- /legacy/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/legacy/train.py -------------------------------------------------------------------------------- /legacy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/legacy/utils.py -------------------------------------------------------------------------------- /notebooks/train_and_pred_using_PHILOW.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/notebooks/train_and_pred_using_PHILOW.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/napari_philow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/__init__.py -------------------------------------------------------------------------------- /src/napari_philow/_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/_annotation.py -------------------------------------------------------------------------------- /src/napari_philow/_data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/_data_manager.py -------------------------------------------------------------------------------- /src/napari_philow/_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/_predict.py -------------------------------------------------------------------------------- /src/napari_philow/_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/_prediction.py -------------------------------------------------------------------------------- /src/napari_philow/_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/_selector.py -------------------------------------------------------------------------------- /src/napari_philow/_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/napari_philow/_tests/test_dock_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/_tests/test_dock_widget.py -------------------------------------------------------------------------------- /src/napari_philow/_train_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/_train_tf.py -------------------------------------------------------------------------------- /src/napari_philow/_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/_trainer.py -------------------------------------------------------------------------------- /src/napari_philow/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/_utils.py -------------------------------------------------------------------------------- /src/napari_philow/_utils_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/_utils_legacy.py -------------------------------------------------------------------------------- /src/napari_philow/napari.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/napari.yaml -------------------------------------------------------------------------------- /src/napari_philow/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/napari_philow/segmentation/data_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/segmentation/data_augmentation.py -------------------------------------------------------------------------------- /src/napari_philow/segmentation/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/segmentation/dataset.py -------------------------------------------------------------------------------- /src/napari_philow/segmentation/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/segmentation/loss.py -------------------------------------------------------------------------------- /src/napari_philow/segmentation/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/segmentation/metric.py -------------------------------------------------------------------------------- /src/napari_philow/segmentation/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/segmentation/predict.py -------------------------------------------------------------------------------- /src/napari_philow/segmentation/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/segmentation/train.py -------------------------------------------------------------------------------- /src/napari_philow/segmentation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/src/napari_philow/segmentation/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurobiology-ut/PHILOW/HEAD/tox.ini --------------------------------------------------------------------------------