tomassykora / retina-optic-disc-detector

Optic disc detection in a retina image using a fully connected convolutional neural network.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Optic disc detection in a retina image

2016/2017

Author: Tomáš Sýkora

A new approach to optic disc detection in a retina image.

detector

A convolutional neural network to detect an optic disc in a retina image. It' accompilshed by predicting distance of a single image patch to the optic disc (x,y position - ground truth) and moving in this direction closer to the optic disc (until close to zero).

Example output:

preprocess

Preprocessing steps to obtain better visibility of the optic disc and the vein network:

0) Input image, 1) adaptive histogram equalization, 2) illumination correction, 3) adaptive histogram equalization

and train

To train the model, images from the STARE database were used. The images divided into patches (45x42) are sent to the CNN. The network consists of fully convolutional layers, output is distance of the patch to the optic disc (x, y directions):

After training on all patches, a 'fine tuning' step comes next. That means that the dataset in the last epoch of training consisted from a set half of which were random patches like the ones in the previous epochs, while the other half consisted of patches with a zero distance to the optic disc. This helped the network to better converge to zero and when the OD was found, the following predictions stayed close to zero (which was a problem without this fine tuning step).

In the future, lots of improvements can be done here, especially in the way the network is trained (on which datasets, how the patches looks like, what's the ratio of clean optic disc patches to the random ones etc.).

usage

  • detector.py --train        -trains the neural network
  • detector.py --detect     -detects the optic disc on one image
  • detector.py --finetune  -another training to make the network better converge to zero
  • detector.py --eval         -evaluate the network on a test dataset

About

Optic disc detection in a retina image using a fully connected convolutional neural network.

License:MIT License


Languages

Language:Python 100.0%