├── LICENSE ├── README.md ├── compute_complexity.py ├── disc_seg ├── README.md └── disc_seg.py ├── evaluate.py ├── models ├── GroupNormalization.py ├── README.md ├── Unet3_Plus.py ├── keras_data.py ├── loss_function.py ├── model.py └── unet_plusplus.py ├── original_data └── README.md ├── pixle_shuffling.py ├── poisson_fusion ├── README.md ├── build_material_library.py └── poisson_blend.py ├── preprocessing.py ├── requirements.txt ├── terminal.py ├── training_and_evaluation_train_on_batch_pb.py ├── training_and_evaluation_train_on_batch_pb_for_ep.py ├── utils.py ├── utils_for_2classes.py └── vessel_seg ├── README.md ├── dataset.py ├── loss.py ├── lossfunction.py ├── main.py ├── results ├── 1001.jpg ├── 1002.jpg ├── 1003.jpg ├── 1004.jpg ├── 1005.jpg ├── 1006.jpg ├── 1007.jpg ├── 1008.jpg ├── 1009.jpg ├── 1010.jpg ├── 2001.jpg ├── 2002.jpg ├── 2003.jpg ├── 2004.jpg ├── 2005.jpg ├── 2006.jpg ├── 2007.jpg ├── 2008.jpg ├── 2009.jpg └── 2010.jpg ├── train ├── image_zoom_hd │ ├── 1002.jpg │ ├── 1003.jpg │ ├── 1004.jpg │ ├── 1005.jpg │ ├── 1007.jpg │ ├── 1008.jpg │ ├── 1009.jpg │ ├── 2002.jpg │ ├── 2003.jpg │ ├── 2004.jpg │ ├── 2005.jpg │ ├── 2007.jpg │ ├── 2009.jpg │ └── 2010.jpg └── label_zoom_hd │ ├── 1002.jpg │ ├── 1003.jpg │ ├── 1004.jpg │ ├── 1005.jpg │ ├── 1007.jpg │ ├── 1008.jpg │ ├── 1009.jpg │ ├── 2002.jpg │ ├── 2003.jpg │ ├── 2004.jpg │ ├── 2005.jpg │ ├── 2007.jpg │ ├── 2009.jpg │ └── 2010.jpg ├── unet.py └── val ├── image_zoom_hd ├── 1001.jpg ├── 1006.jpg ├── 1010.jpg ├── 2001.jpg ├── 2006.jpg └── 2008.jpg └── label_zoom_hd ├── 1001.jpg ├── 1006.jpg ├── 1010.jpg ├── 2001.jpg ├── 2006.jpg └── 2008.jpg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/README.md -------------------------------------------------------------------------------- /compute_complexity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/compute_complexity.py -------------------------------------------------------------------------------- /disc_seg/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /disc_seg/disc_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/disc_seg/disc_seg.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/evaluate.py -------------------------------------------------------------------------------- /models/GroupNormalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/models/GroupNormalization.py -------------------------------------------------------------------------------- /models/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/Unet3_Plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/models/Unet3_Plus.py -------------------------------------------------------------------------------- /models/keras_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/models/keras_data.py -------------------------------------------------------------------------------- /models/loss_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/models/loss_function.py -------------------------------------------------------------------------------- /models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/models/model.py -------------------------------------------------------------------------------- /models/unet_plusplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/models/unet_plusplus.py -------------------------------------------------------------------------------- /original_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/original_data/README.md -------------------------------------------------------------------------------- /pixle_shuffling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/pixle_shuffling.py -------------------------------------------------------------------------------- /poisson_fusion/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /poisson_fusion/build_material_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/poisson_fusion/build_material_library.py -------------------------------------------------------------------------------- /poisson_fusion/poisson_blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/poisson_fusion/poisson_blend.py -------------------------------------------------------------------------------- /preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/preprocessing.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/requirements.txt -------------------------------------------------------------------------------- /terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/terminal.py -------------------------------------------------------------------------------- /training_and_evaluation_train_on_batch_pb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/training_and_evaluation_train_on_batch_pb.py -------------------------------------------------------------------------------- /training_and_evaluation_train_on_batch_pb_for_ep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/training_and_evaluation_train_on_batch_pb_for_ep.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/utils.py -------------------------------------------------------------------------------- /utils_for_2classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/utils_for_2classes.py -------------------------------------------------------------------------------- /vessel_seg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/README.md -------------------------------------------------------------------------------- /vessel_seg/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/dataset.py -------------------------------------------------------------------------------- /vessel_seg/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/loss.py -------------------------------------------------------------------------------- /vessel_seg/lossfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/lossfunction.py -------------------------------------------------------------------------------- /vessel_seg/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/main.py -------------------------------------------------------------------------------- /vessel_seg/results/1001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/1001.jpg -------------------------------------------------------------------------------- /vessel_seg/results/1002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/1002.jpg -------------------------------------------------------------------------------- /vessel_seg/results/1003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/1003.jpg -------------------------------------------------------------------------------- /vessel_seg/results/1004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/1004.jpg -------------------------------------------------------------------------------- /vessel_seg/results/1005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/1005.jpg -------------------------------------------------------------------------------- /vessel_seg/results/1006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/1006.jpg -------------------------------------------------------------------------------- /vessel_seg/results/1007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/1007.jpg -------------------------------------------------------------------------------- /vessel_seg/results/1008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/1008.jpg -------------------------------------------------------------------------------- /vessel_seg/results/1009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/1009.jpg -------------------------------------------------------------------------------- /vessel_seg/results/1010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/1010.jpg -------------------------------------------------------------------------------- /vessel_seg/results/2001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/2001.jpg -------------------------------------------------------------------------------- /vessel_seg/results/2002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/2002.jpg -------------------------------------------------------------------------------- /vessel_seg/results/2003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/2003.jpg -------------------------------------------------------------------------------- /vessel_seg/results/2004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/2004.jpg -------------------------------------------------------------------------------- /vessel_seg/results/2005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/2005.jpg -------------------------------------------------------------------------------- /vessel_seg/results/2006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/2006.jpg -------------------------------------------------------------------------------- /vessel_seg/results/2007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/2007.jpg -------------------------------------------------------------------------------- /vessel_seg/results/2008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/2008.jpg -------------------------------------------------------------------------------- /vessel_seg/results/2009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/2009.jpg -------------------------------------------------------------------------------- /vessel_seg/results/2010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/results/2010.jpg -------------------------------------------------------------------------------- /vessel_seg/train/image_zoom_hd/1002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/image_zoom_hd/1002.jpg -------------------------------------------------------------------------------- /vessel_seg/train/image_zoom_hd/1003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/image_zoom_hd/1003.jpg -------------------------------------------------------------------------------- /vessel_seg/train/image_zoom_hd/1004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/image_zoom_hd/1004.jpg -------------------------------------------------------------------------------- /vessel_seg/train/image_zoom_hd/1005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/image_zoom_hd/1005.jpg -------------------------------------------------------------------------------- /vessel_seg/train/image_zoom_hd/1007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/image_zoom_hd/1007.jpg -------------------------------------------------------------------------------- /vessel_seg/train/image_zoom_hd/1008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/image_zoom_hd/1008.jpg -------------------------------------------------------------------------------- /vessel_seg/train/image_zoom_hd/1009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/image_zoom_hd/1009.jpg -------------------------------------------------------------------------------- /vessel_seg/train/image_zoom_hd/2002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/image_zoom_hd/2002.jpg -------------------------------------------------------------------------------- /vessel_seg/train/image_zoom_hd/2003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/image_zoom_hd/2003.jpg -------------------------------------------------------------------------------- /vessel_seg/train/image_zoom_hd/2004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/image_zoom_hd/2004.jpg -------------------------------------------------------------------------------- /vessel_seg/train/image_zoom_hd/2005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/image_zoom_hd/2005.jpg -------------------------------------------------------------------------------- /vessel_seg/train/image_zoom_hd/2007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/image_zoom_hd/2007.jpg -------------------------------------------------------------------------------- /vessel_seg/train/image_zoom_hd/2009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/image_zoom_hd/2009.jpg -------------------------------------------------------------------------------- /vessel_seg/train/image_zoom_hd/2010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/image_zoom_hd/2010.jpg -------------------------------------------------------------------------------- /vessel_seg/train/label_zoom_hd/1002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/label_zoom_hd/1002.jpg -------------------------------------------------------------------------------- /vessel_seg/train/label_zoom_hd/1003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/label_zoom_hd/1003.jpg -------------------------------------------------------------------------------- /vessel_seg/train/label_zoom_hd/1004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/label_zoom_hd/1004.jpg -------------------------------------------------------------------------------- /vessel_seg/train/label_zoom_hd/1005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/label_zoom_hd/1005.jpg -------------------------------------------------------------------------------- /vessel_seg/train/label_zoom_hd/1007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/label_zoom_hd/1007.jpg -------------------------------------------------------------------------------- /vessel_seg/train/label_zoom_hd/1008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/label_zoom_hd/1008.jpg -------------------------------------------------------------------------------- /vessel_seg/train/label_zoom_hd/1009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/label_zoom_hd/1009.jpg -------------------------------------------------------------------------------- /vessel_seg/train/label_zoom_hd/2002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/label_zoom_hd/2002.jpg -------------------------------------------------------------------------------- /vessel_seg/train/label_zoom_hd/2003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/label_zoom_hd/2003.jpg -------------------------------------------------------------------------------- /vessel_seg/train/label_zoom_hd/2004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/label_zoom_hd/2004.jpg -------------------------------------------------------------------------------- /vessel_seg/train/label_zoom_hd/2005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/label_zoom_hd/2005.jpg -------------------------------------------------------------------------------- /vessel_seg/train/label_zoom_hd/2007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/label_zoom_hd/2007.jpg -------------------------------------------------------------------------------- /vessel_seg/train/label_zoom_hd/2009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/label_zoom_hd/2009.jpg -------------------------------------------------------------------------------- /vessel_seg/train/label_zoom_hd/2010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/train/label_zoom_hd/2010.jpg -------------------------------------------------------------------------------- /vessel_seg/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/unet.py -------------------------------------------------------------------------------- /vessel_seg/val/image_zoom_hd/1001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/val/image_zoom_hd/1001.jpg -------------------------------------------------------------------------------- /vessel_seg/val/image_zoom_hd/1006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/val/image_zoom_hd/1006.jpg -------------------------------------------------------------------------------- /vessel_seg/val/image_zoom_hd/1010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/val/image_zoom_hd/1010.jpg -------------------------------------------------------------------------------- /vessel_seg/val/image_zoom_hd/2001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/val/image_zoom_hd/2001.jpg -------------------------------------------------------------------------------- /vessel_seg/val/image_zoom_hd/2006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/val/image_zoom_hd/2006.jpg -------------------------------------------------------------------------------- /vessel_seg/val/image_zoom_hd/2008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/val/image_zoom_hd/2008.jpg -------------------------------------------------------------------------------- /vessel_seg/val/label_zoom_hd/1001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/val/label_zoom_hd/1001.jpg -------------------------------------------------------------------------------- /vessel_seg/val/label_zoom_hd/1006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/val/label_zoom_hd/1006.jpg -------------------------------------------------------------------------------- /vessel_seg/val/label_zoom_hd/1010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/val/label_zoom_hd/1010.jpg -------------------------------------------------------------------------------- /vessel_seg/val/label_zoom_hd/2001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/val/label_zoom_hd/2001.jpg -------------------------------------------------------------------------------- /vessel_seg/val/label_zoom_hd/2006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/val/label_zoom_hd/2006.jpg -------------------------------------------------------------------------------- /vessel_seg/val/label_zoom_hd/2008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BEBC-MIA/Retinal-lesion-Segmentation/HEAD/vessel_seg/val/label_zoom_hd/2008.jpg --------------------------------------------------------------------------------