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.
- SegNet implementation by tkuanlan35: https://github.com/tkuanlun350/Tensorflow-SegNet.
- Unraveling method from mshunshin: https://github.com/mshunshin/SegNetCMR/blob/master/SegNetCMR/layers.py
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:
- an encoder-decoder structure with different number of layers for the different versions
- batch normalization with a moving avarage decay of 0.99
- usampling layers that use pooling indices from the maxpool in the encoder. The positions for the original pixels that are kept during maxpooling in the encoder is saved, and used in the decoder to place the pixels back to their original positions.
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.
- Stochastic gradient descent
- Adam
- Adagrad
- Momentum
- Variance scale
- Xavier
- Four encoders and four decoders
- Stochastic gradient descent optimizer
- Xavier initializer
Same architecture as Basic, except for dropoutlayers that are added after the pooling layers, with a dropout rate of 0.5.
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.
- Five encoder and decoders
- Adagrad optimizer
- Variance scale weight initializer
Same architecture as Extended, except for dropoutlayers that are added after the pooling layers, with a dropout rate of 0.5.
- Tensorflow GPU 1.3.0
- Python 3.5
pip install -r AirNet/requirements.txt
tensorboard --logdir=path/to/log-directory
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.
The IR images gave a small increase in performance, and examples of the segmentation can be seen here: