SegNet --> AirNet

AirNet is a segmentation network based on SegNet, but with some modifications. The goal is to use the model to segment multispectral images, so that geographical information (e.g. building information) can be extracted. The model is implemented in Tensorflow.

Recognition

Architecture

NB! If you are unfamiliar with how convolutional neural networks work, I have written a blogpost that explains the basic concepts.

I've implemented four different version of the models:

All the AirNet models have:

Airnet extended architecture

Optimizers and initializers

Different optimizers and initializers have been tested on each of the models. The ones that were tested are listed below, and the ones that was chosen based on performance is given in the model description.

Optimizers:

AirNet Basic

AirNet Basic dropout

Same architecture as Basic, except for dropoutlayers that are added after the pooling layers, with a dropout rate of 0.5.

AirNet Extended

The extended model is much larger and has 5 encoders and 5 decoders. It takes longer time to train, it is slower during inference, but achieves higher performance when trained sufficiently.

AirNet Extended dropout

Same architecture as Extended, except for dropoutlayers that are added after the pooling layers, with a dropout rate of 0.5.

Usage

Requirements

pip install -r AirNet/requirements.txt

Run TensorBoard:

tensorboard --logdir=path/to/log-directory

Dataset

To verify the model I used the CamVid dataset. This can be downloaded from: https://github.com/alexgkendall/SegNet-Tutorial, and used in the model by setting the correct paths and dataset size in AirNet/__init__.py

The datasets of aerial images used to train and test the model is constructed through an automatic mapping of vector data and aerial images of Norway. Both a dataset with IR images, and with RGB images was constructed, both containing around 4500 images. The data is unfortunately not open source.

Example dataset

Results

The IR images gave a small increase in performance, and examples of the segmentation can be seen here: