Skip to content

Repository for the paper "Synthetic optical coherence tomography angiographs for detailed retinal vessel segmentation without human annotations" (2024).

License

Notifications You must be signed in to change notification settings

aiforvision/OCTA-autosegmentation

Repository files navigation

Synthetic optical coherence tomography angiographs for detailed retinal vessel segmentation without human annotations

This is the repository for the paper Synthetic optical coherence tomography angiographs for detailed retinal vessel segmentation without human annotations (2024).

Abstract

Optical coherence tomography angiography(OCTA) is a non-invasive imaging modality that can acquire high-resolution volumes of the retinal vasculature and aid the diagnosis of ocular, neurological and cardiac diseases. Segmenting the visible blood vessels is a common first step when extracting quantitative biomarkers from these images. Classical segmentation algorithms based on thresholding are strongly affected by image artifacts and limited signal-to-noise ratio. The use of modern, deep learning-based segmentation methods has been inhibited by a lack of large datasets with detailed annotations of the blood vessels. To address this issue, recent work has employed transfer learning, where a segmentation network is trained on synthetic OCTA images and is then applied to real data. However, the previously proposed simulations fail to faithfully model the retinal vasculature and do not provide effective domain adaptation. Because of this, current methods are unable to fully segment the retinal vasculature, in particular the smallest capillaries. In this work, we present a lightweight simulation of the retinal vascular network based on space colonization for faster and more realistic OCTA synthesis. We then introduce three contrast adaptation pipelines to decrease the domain gap between real and artificial images. We demonstrate the superior segmentation performance of our approach in extensive quantitative and qualitative experiments on three public datasets that compare our method to traditional computer vision algorithms and supervised training using human annotations. Finally, we make our entire pipeline publicly available, including the source code, pretrained models, and a large dataset of synthetic OCTA images

🔴 TL;DR: Segment my images / Generate synthetic images

We provide a docker file with a pretrained model to segment 3×3 mm² macular OCTA images:

# Build Docker image. (Only required once)
docker build . -t octa-seg

1. To segment a set of images, replace the placeholders with your directory paths and run:

Note

If you are using Windows and the following commands fail, make sure to change the end of line sequence of the ./docker/dockershell.sh file from CRLF to LF (unix style).

docker run --rm -v [DATASET_DIR]:/var/dataset -v [RESULT_DIR]:/var/segmented octa-seg segmentation

2. We provide 500 synthetic training samples with labels under ./datasets. To generate N more samples, run:

docker run --rm -v [RESULT_DIR]:/var/generation octa-seg generation [N]

3. Generate a 3D reconstruction of your 2D segmentation map. Results will be given as Nifti file.

Note

This feature is still experimental!

docker run --rm -v [DATASET_DIR]:/var/segmented -v [RESULT_DIR]:/var/reconstructed octa-seg 3d_reconstruction

🔵 Manual Installation

The following section explains how to prepare your environment to run the experiments from the paper, or new experiments.

Installation

Make sure you have a clean conda environment with python 3 and pytorch (tested with python 3.11, pytorch==2.0.1, and torchvision==0.15.2). Install the remaining required packages:

pip install -r requirements.txt

Synthetic Dataset

We provide 500 synthetic training samples with labels under ./datasets. To create more samples, visit the respective README.

Getting the evaluation datasets

We use three test datasets:

Important

  • For the OCTA-500 dataset, make sure to select the correct images and not to include the FAZ segmentation.
  • Each dataset comes with a different level of detail for vessel segmentation. When training on synthetic data, make sure to select the correct min_radius in the repective config.yml for label alignment.
  • When training on synthetic data for the dataset by Giarratano et al., you have to apply random cropping in the training data augmentations of the config.yml file.

Getting the pretrained models

We provide a pretrained GAN model and segmentation model trained for the OCTA-500 dataset under ./docker/trained_models.

🟡 How to use repository

Examples

We provide two jupyter notebooks with a step-by-step explanation on how to use this repository.

  1. example_custom_vessel_simulation.ipynb shows how you can customize the vessel simulation to your needs. We create a toy configuration that simulates 12x12 mm² OCTA images.
  2. example_train_gan-seg_with_new_dataset.ipynb explains how you can train a new GAN and segmentation model tailored to your own dataset. This will boost segmentation performance notably if your dataset has a different contrast that the OCTA-500 dataset.

General info

Experiments are organized via config.yml files. We provide several predefined config files under ./configs for the experiments shown in the paper. Please refer to the respective README for more information.

GAN training

To re-train a GAN model for the S-GAN experiment in the paper, you can use the provided config file. The trained Generator is then used for data augmentation when training a separate segmentation network on synthetic data (see config file).

# Train a new Generator network
python train.py --config_file ./configs/config_gan_ves_seg.yml 

Now manually copy the path of the generator checkpoint to ./configs/config_ves_seg-S_GAN.yml.

Train:
    data_augmentation:
        #...
        - name: ImageToImageTranslationd
            model_path: ./results/gan-ves-seg/[FOLDER_NAME]/checkpoints/

Segmentation training

To train models for experiments as shown in the paper, you can use the provided config files under ./configs. Select the required dataset by specifying the input path in the respective config file. After the training has started, a new folder will be created. The folder contains training details, checkpoints, and a 'config.yml' file that you will need for validation and testing.

# Start a new training instance
python train.py --config_file ./configs/[CONFIG_FILE_NAME]

Validation

To evaluate trained models (or methods that do not need to be trained), make sure the validation section of the respective config file is correct and run:

python validate.py --config_file [PATH_TO_CONFIG_FILE] --epoch [EPOCH]

Testing / Inference

To generate segmentations (or transformed images if testing GAN), make sure the test section of the respective config file is correct and run:

python test.py --config_file [PATH_TO_CONFIG_FILE] --epoch [EPOCH]

🟢 Citation

If you use this code for your research, please cite our paper:

@ARTICLE{Kreitner2024,
author={Kreitner, Linus and Paetzold, Johannes C. and Rauch, Nikolaus and Chen, Chen and Hagag, Ahmed M. and Fayed, Alaa E. and Sivaprasad, Sobha and Rausch, Sebastian and Weichsel, Julian and Menze, Bjoern H. and Harders, Matthias and Knier, Benjamin and Rueckert, Daniel and Menten, Martin J.},
journal={IEEE Transactions on Medical Imaging}, 
title={Synthetic optical coherence tomography angiographs for detailed retinal vessel segmentation without human annotations}, 
year={2024},
volume={},
number={},
pages={1-1},
doi={10.1109/TMI.2024.3354408}
url={https://doi.org/10.1109/TMI.2024.3354408}
}

And our previous work:

@InProceedings{Menten2022,
author={Menten, Martin J. and Paetzold, Johannes C. and Dima, Alina
and Menze, Bjoern H. and Knier, Benjamin and Rueckert, Daniel},
title={Physiology-Based Simulation of the Retinal Vasculature Enables Annotation-Free Segmentation of OCT Angiographs},
booktitle={Medical Image Computing and Computer Assisted Intervention -- MICCAI 2022},
year={2022},
publisher={Springer Nature Switzerland},
address={Cham},
pages={330--340},
abstract={Optical coherence tomography angiography (OCTA) can non-invasively image the eye's circulatory system. In order to reliably characterize the retinal vasculature, there is a need to automatically extract quantitative metrics from these images. The calculation of such biomarkers requires a precise semantic segmentation of the blood vessels. However, deep-learning-based methods for segmentation mostly rely on supervised training with voxel-level annotations, which are costly to obtain.},
isbn={978-3-031-16452-1}
}

About

Repository for the paper "Synthetic optical coherence tomography angiographs for detailed retinal vessel segmentation without human annotations" (2024).

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published