Skip to content

vineet1992/Retina-Seg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Retina Vessel Segmentation using an Ensemble of U-Nets

Example Segmentation

Overview

This provides a software package to automatically segment vasculature from Retinal Fundus photographs. The model uses an ensemble of 10 U-Nets trained on datasets from DRIVE, CHASEdb, and STARE.

Installation

This inference code was tested on Ubuntu 18.04.3 LTS, conda version 4.8.0, python 3.7.7, fastai 1.0.61, cuda 10.2, pytorch 1.5.1 and cadene pretrained models 0.7.4. A full list of dependencies is listed in environment.yml.

Inference can be run on the GPU or CPU, and should work with ~4GB of GPU or CPU RAM. For GPU inference, a CUDA 10 capable GPU is required.

For the model weights to download, Github's large file service must be downloaded and installed: https://git-lfs.github.com/

This example is best run in a conda environment:

git lfs clone https://github.com/vineet1992/Retina-Seg/
cd location_of_repo
conda env create -n Retina_Seg -f environment.yml
conda activate Retina_Seg
python Code/seg_ensemble.py test_images/ test_output/ ../model/UNet_Ensemble 10

Dummy image files are provided in test_images/;. Weights for the segmentation model are in model/UNet_Ensemble_[0-9].pth. Output will be written to test_output/.

To run the outlier detection model use the following additional steps

python Code/run_outliers.py ../test_images/ /home/vraghu/Retina/Github/Retina-Seg/model/Outlier_Detector_Resnet_021421 ../test_output/Outlier_Output.csv

Then, the predicted outlier scores will be stored in test_output/Outlier_Output.csv. Please change the image directory to run the model on your images.

Acknowledgements

I thank the creators of the DRIVE, CHASEdb, STARE databases along with the UK Biobank for access to their datasets.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages