├── README.md ├── core ├── dataset.py └── unet.py ├── evaluate.py ├── images ├── CHASEDB.png ├── DRIVE.png ├── datasets_sample.jpg ├── preprocess.jpg ├── preprocess2.jpg └── train.png ├── makefile ├── preprocess.py ├── train.py └── train_distribute.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WILeroy/retina_unet/HEAD/README.md -------------------------------------------------------------------------------- /core/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WILeroy/retina_unet/HEAD/core/dataset.py -------------------------------------------------------------------------------- /core/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WILeroy/retina_unet/HEAD/core/unet.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WILeroy/retina_unet/HEAD/evaluate.py -------------------------------------------------------------------------------- /images/CHASEDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WILeroy/retina_unet/HEAD/images/CHASEDB.png -------------------------------------------------------------------------------- /images/DRIVE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WILeroy/retina_unet/HEAD/images/DRIVE.png -------------------------------------------------------------------------------- /images/datasets_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WILeroy/retina_unet/HEAD/images/datasets_sample.jpg -------------------------------------------------------------------------------- /images/preprocess.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WILeroy/retina_unet/HEAD/images/preprocess.jpg -------------------------------------------------------------------------------- /images/preprocess2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WILeroy/retina_unet/HEAD/images/preprocess2.jpg -------------------------------------------------------------------------------- /images/train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WILeroy/retina_unet/HEAD/images/train.png -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WILeroy/retina_unet/HEAD/makefile -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WILeroy/retina_unet/HEAD/preprocess.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WILeroy/retina_unet/HEAD/train.py -------------------------------------------------------------------------------- /train_distribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WILeroy/retina_unet/HEAD/train_distribute.py --------------------------------------------------------------------------------