├── .gitignore ├── LICENSE ├── README.md ├── code └── OCTA-Net │ ├── evaluation.py │ ├── first_stage.py │ ├── front_main.py │ ├── fundus_dataset.py │ ├── fusion_main.py │ ├── imed_models.py │ ├── losses.py │ ├── octa_dataset.py │ ├── options.py │ ├── other_models.py │ ├── resnest.py │ ├── resnet.py │ ├── second_stage.py │ ├── splat.py │ ├── test.py │ ├── test_time.py │ ├── train.py │ ├── utils.py │ └── val.py ├── evaluation ├── draw_all_roc.py ├── evaluation.py ├── rose1_fusion.py └── utils.py └── figures ├── FA.png └── frame.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/README.md -------------------------------------------------------------------------------- /code/OCTA-Net/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/evaluation.py -------------------------------------------------------------------------------- /code/OCTA-Net/first_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/first_stage.py -------------------------------------------------------------------------------- /code/OCTA-Net/front_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/front_main.py -------------------------------------------------------------------------------- /code/OCTA-Net/fundus_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/fundus_dataset.py -------------------------------------------------------------------------------- /code/OCTA-Net/fusion_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/fusion_main.py -------------------------------------------------------------------------------- /code/OCTA-Net/imed_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/imed_models.py -------------------------------------------------------------------------------- /code/OCTA-Net/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/losses.py -------------------------------------------------------------------------------- /code/OCTA-Net/octa_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/octa_dataset.py -------------------------------------------------------------------------------- /code/OCTA-Net/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/options.py -------------------------------------------------------------------------------- /code/OCTA-Net/other_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/other_models.py -------------------------------------------------------------------------------- /code/OCTA-Net/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/resnest.py -------------------------------------------------------------------------------- /code/OCTA-Net/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/resnet.py -------------------------------------------------------------------------------- /code/OCTA-Net/second_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/second_stage.py -------------------------------------------------------------------------------- /code/OCTA-Net/splat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/splat.py -------------------------------------------------------------------------------- /code/OCTA-Net/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/test.py -------------------------------------------------------------------------------- /code/OCTA-Net/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/test_time.py -------------------------------------------------------------------------------- /code/OCTA-Net/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/train.py -------------------------------------------------------------------------------- /code/OCTA-Net/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/utils.py -------------------------------------------------------------------------------- /code/OCTA-Net/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/code/OCTA-Net/val.py -------------------------------------------------------------------------------- /evaluation/draw_all_roc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/evaluation/draw_all_roc.py -------------------------------------------------------------------------------- /evaluation/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/evaluation/evaluation.py -------------------------------------------------------------------------------- /evaluation/rose1_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/evaluation/rose1_fusion.py -------------------------------------------------------------------------------- /evaluation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/evaluation/utils.py -------------------------------------------------------------------------------- /figures/FA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/figures/FA.png -------------------------------------------------------------------------------- /figures/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMED-Lab/OCTA-Net-OCTA-Vessel-Segmentation-Network/HEAD/figures/frame.png --------------------------------------------------------------------------------