Source-linked AI summary

Deep Retinal Image Understanding

Kevis-Kokitsi Maninis, Jordi Pont-Tuset, Pablo Arbeláez, Luc Van Gool

arXiv:1609.01103v1cs.CV

TL;DR

Retinal image understanding needs automated methods for clinically important fundus structures, particularly blood vessels and optic discs. DRIU uses a shared CNN base with task-specific layers to segment both structures, achieving super-human consistency with the gold standard across four public datasets.

  • Problem

    Automated retinal analysis needs effective methods for segmenting blood vessels and optic discs, structures important for assessing widespread eye diseases.

  • Method

    DRIU specializes a pretrained CNN base with separate task-specific layers and feature volumes for retinal vessel and optic disc segmentation.

  • Results

    DRIU reaches or surpasses trained human specialists on both tasks across four publicly available annotated datasets.

  • Takeaways & Limitations

    DRIU provides a fast, accurate unified approach for retinal vessel and optic disc segmentation in fundus images.

Abstract

from arXiv · show

This paper presents Deep Retinal Image Understanding (DRIU), a unified framework of retinal image analysis that provides both retinal vessel and optic disc segmentation. We make use of deep Convolutional Neural Networks (CNNs), which have proven revolutionary in other fields of computer vision such as object detection and image classification, and we bring their power to the study of eye fundus images. DRIU uses a base network architecture on which two set of specialized layers are trained to solve both the retinal vessel and optic disc segmentation. We present experimental validation, both qualitative and quantitative, in four public datasets for these tasks. In all of them, DRIU presents super-human performance, that is, it shows results more consistent with a gold standard than a second human annotator used as control.

1 Introduction

Automated retinal image understanding matters for diagnosing widespread, vision-threatening diseases, with blood vessels and optic discs as key structures. DRIU applies deep CNNs to jointly segment both structures and reports performance matching or exceeding trained specialists across four public datasets.

  • Motivation: Retinal image understanding supports assessment of glaucoma, diabetic retinopathy, macular degeneration, and hypertension, whose untreated progression can cause severe visual impairment.Early diagnosis, treatment, and periodic specialist examination are described as important for better prognosis and quality of life.
  • Target structures: Blood vessel networks and optic discs are two anatomical structures of particular diagnostic interest in fundus images.Prior automated retinal-image analysis has consequently focused heavily on segmenting these structures.
  • Prior approaches: Deep CNNs have recently advanced natural-image recognition, detection, semantic segmentation, and contour detection, motivating their use in retinal analysis.Earlier retinal methods include handcrafted filters, enhancement techniques, morphology, PCA, superpixel classification, and emerging CNN approaches.
  • DRIU: DRIU specializes a base CNN with task-specific layers for blood vessel and optic disc segmentation in fundus images.The framework is presented as a unified approach to both retinal-image tasks.
  • DRIU: A single forward pass segments both structures, and DRIU reaches or surpasses trained human specialists on four publicly available annotated datasets.The paper describes the method as both highly efficient and highly accurate.

2 CNNs for Retinal Image Understanding

DRIU uses a pretrained VGG-based CNN with specialized feature-processing branches for retinal vessel and optic disc prediction. Class-balanced training addresses foreground-background imbalance, while task-specific feature selection and GPU inference support efficient segmentation.

  • Base network: DRIU removes VGG’s fully connected layers and uses its convolutional stages as a pretrained base network for image-to-image regression.Four max-pooling layers divide the base network into five stages with progressively coarser feature maps.
  • Training: Class-balanced cross entropy compensates for the substantially larger number of background than foreground pixels.The paper gives approximately 10% vessel pixels as an example and defines β = |Y−|/|Y|.
  • Task-specific layers: Separate feature-map volumes use the four finer stages for vessels and the four coarser stages for optic-disc detection.The design reflects thin-vessel detail versus the optic disc’s coarser structure.
  • Training: The network is fine-tuned end-to-end for 20,000 iterations using stochastic gradient descent with momentum and one image per iteration.Training uses a very small learning rate of lr = 10^-8, together with rotation and scaling augmentation.
  • Inference: At test time, DRIU processes original RGB retinal images without preprocessing and segments both tasks on a GPU.Average vessel-and-disc execution time is 85 ms for DRIVE and 104 ms for STARE on an NVIDIA TITAN-X GPU.

3 Experimental Validation

DRIU was evaluated for retinal vessel and optic disc segmentation on four public datasets using separate training and previously unseen test sets. It outperformed comparison methods and showed greater consistency with gold-standard annotations than a second human annotator.

  • Experimental setup: Training used separate datasets and unseen test sets for retinal vessel and optic disc segmentation, with rotation and scaling augmentation.The experiments covered DRIVE and STARE for vessels, and DRIONS-DB and RIM-ONE for optic discs.
  • Evaluation protocol: DRIU was compared using pixel-wise precision-recall curves and optimal-point Dice or F1-measure for vessel segmentation.Soft-map outputs were binarized across multiple confidence values before calculating the curves.
  • Vessel segmentation: DRIU performed better than all comparison methods on DRIVE and STARE across all operating regimes.The evaluation also found DRIU more consistent with the gold standard than the second human expert on both datasets.
  • Optic disc segmentation: DRIU showed super-human optic disc segmentation performance on DRIONS-DB and RIM-ONE relative to the second human annotator.The comparison used region precision-recall curves, with the second annotator represented by red dots.
  • Optic disc segmentation: DRIU had lower median boundary error and less error dispersion than the comparison annotations on both optic disc datasets.The qualitative results also supported robustness and consistency in the more challenging and diverse RIM-ONE scenarios.

4 Conclusions and Discussion

The paper presents DRIU as a fast and accurate CNN-based method using a shared base network with task-specific layers for retinal vessel and optic disc segmentation. Validation across four public datasets showed super-human performance, while accurate automated measurements may support disease monitoring and population-level statistical analysis.

  • Conclusions: DRIU combines a shared CNN base network with per-task specialized layers for retinal vessel and optic disc segmentation.The paper presents the method as both fast and accurate.
  • Conclusions: Validation on four public datasets showed super-human performance for retinal vessel and optic disc segmentation.The evaluation included both qualitative and quantitative evidence.
  • Discussion: Accurate and repeatable automated measurements may help monitor eye-disease evolution and enable comparative statistical analyses on large populations.The paper frames these possibilities as extending beyond assistance with initial diagnosis.
Loading 1609.01103v1…