Skip to content

Latest commit

 

History

History
33 lines (18 loc) · 1.54 KB

README.md

File metadata and controls

33 lines (18 loc) · 1.54 KB

TensorFlow Keras Autoencoder

Retinal Vessel Segmentation

Introduction

Implementing an Autoencoder architecture neural network for segmentation of cropped patches of the grayscaled retinal image

Autoencoder

autoencoder

Autoencoder, or an "hourglass" model, is a simple extension of the image classification model. The process of obtaining the compressed feature shares the same concept of abstraction path introduced in the classification model. The compressed feature is then propagated to the expansion path, which de-compresses the compressed feature back to the spatial representation of the image. In this arrangement, the compressed feature is often called the "Bottleneck" feature.

Autoencoder architecture is used to build a model that can learn to produce a segmentation mask from the input image. Intuitively, the output of the autoencoder is expected to be the predicted segmentation mask. During training, the loss will be computed between the real label mask and the predicted mask.

Instruction

$ python3 main.py

Result

Model Result