Code Monkey home page Code Monkey logo

road_segmentation_project's Introduction

Road segmentation with upsampled neural networks


Reminder: This is still work in progress with eventually preliminary results. RIGHT NOW WORKING ON IT


Intro

Within this university project we, Jann Goschenhofer and Niklas Klein, implemented a neural net for pixelwise detection of roads on aerial imagery. The project was executed in cooperation with an industry partner on the partner's private data. Therefore, this public version is applied on the massachusets road data set kindly provided by Volodymir Mnih.

This readme is structured in two parts: in part 1, we explain our model architecture and try to give some intuition for our model. Also we visualize some of the results and compare them with Mnih's approach from his PhD-Thesis. In the second part, we describe the usage of our code to reproduce the results.


Part 1: Explanation ot the model architecture

The task at hand was to create a model that outputs a probability mask in the same width and height as the input rgb image. In this mask, a probability score $P(pixel_{ij} = road | input image)$ for each input pixel from the input image is contained. This is scetched in
scetch of the task.

How do we do that? As this is an image processing task and we want to include the context information of each pixel for the prediction, we want to use Convolutional Neural Networks (CNNs). This model class is the state of the art in image processing and extracts feature maps from the input image that are later used for the classification via a convolution operation. Our specific architecture roughly follows the U-Net architecture that was used for cell detection on biomedical images.


Max-pooling

Max-pooling is one of the key operations that allows the training of very deep CNNs. It efficiently reduces the dimensionality of the subsequent layers and therefore dramatically reduces the amount of matrix mutiplications during the train process. This is illustrated in
max-pooling.

In addition, max-pooling leads to an translational invariance: the extracted features are independent of their specific location. Practically speaking: a facial recognition classifier does not care if my nose is in the upper left or the lower right corner of an input image. In the past, this effect was interpreted as a positive side property of CNNs and it is the core of the current research in capsule networks.

In our case, we are indeed interested in this spatial information as we want to make spatial predictions in the dimensionality of our input images. Thus, we need two operations: 1) a method to re-increase the dimensionality of our network and 2) a way to re-integrate the spatial information into our model.


Upsampling

Within this step, we use a nearest neighbor interpolation to double the dimensionality of the feature maps in the the second half of our architecture. Check this figure for an illustration uspsampling

There exists a wide range of [upsampling techniques](LINK MISSING) and it would be very interesting to evaluate the performance with different methods.


Skip Connections

Now that we made it back to the desired dimensionality we have to re-integrate the spatial information that was lost in the pooling steps. Therefore we use skip connections (also termed merge layers) which are illustrated as the brown arrows between the two halfs of our complete U-shaped architecture:
complete architecture

Check for instance the most upper skip connection. For the next convolution (white-orange block with depth 128 to blueblock with depth 64), the net can choose between 1) features that were extracted at a very early stage (white) and contain abstract but rich spatial information and 2) features from below (orange) that were extracted through the whole architecture and contain very detailed features with low spatial information.


Training

We implemented the model in keras and used the following training parameters:

  • Optimizer: Adam (lr = 0.00001, beta_1 = 0.9, beta_2 = 0.999, epsilon = 1e-08, decay = 1e-08)
  • Activation: relu between convlayers and sigmoid for last dense layer
  • Regularization: two dropout layers with p = 0.5 and early stopping with patience = 10
  • batch size: 4
  • amount of train images: 800 patches in dimension 512x512
  • amount of test images: 166 512x512 patches from Minh's test set for comparison
  • Thresholding of patches: we only included patches with > 5% road pixels in the training
  • Threshold for probability scores: we selected 0.4 as optimal threshold for the F1 measure

Check our code for more details. As always with hyperparameters, they can be tuned and tweeked to the max and we would be super happy to receive your feedback if you toy around with our code.


Results

Error measure

As this is a highly unbalanced binary classification task, we use the F1-Score as performance evaluation and also report precision and recall.

Visualization

Preliminary Results: This visualizations are extracted from a net trained for only 5 epochs on 200 image patches. This should just give the reader an idea for the final visualizations.

result 1 Visualization of a test image: true positives are marked in yellow, false positives in red, and false negatives in blue

Comparison with Volodymir's results

TODO: include comparison table here, see issues


Part 2: Implementation


Code structure

The code is structured as follows:

  1. datagathering: execute the script get_mnih_data.py to download the data. Before execution, adjust the paths accordingly.
  2. preprocessing: execute the srcipt preprocess.py to crop the data in 512x512 patches and brings them in a format that is readable by the successive scripts. Adjust the paths accordingly.
  3. training: execute the script train.py to train the architecture and store the model as a hdf5 file. Again, adjust the paths accordingly and do not forget to name your model. Also, there is the option to include a log-file.
  4. evaluation: contains two scripts: test.py and test_loop.py. Both use the test data to report performance measures and visualizations for each of the test images. In addition, test_loop.py tests and stores different threshold values for the probability scores that are outputed by our net. We found a threshold of 0.4 optimal for our performance measure, but this can change in other architectures, precision-recall-weighting etc.
  5. custommodule: this local library contains all necessary helper functions for the other scripts. As this is still work in progress, the library also contains many functions that are not currently in use. We tried to document the several functions and their functionality in a understandable manner.

Dependencies

Our code works with Python 3.5.1. and the following dependencies:

  1. tensorflow==1.4.0
  2. Keras==2.1.1
  3. h5py==2.7.1
  4. scikit-image==0.13.1
  5. scikit-learn==0.19.1
  6. numpy==1.13.3
  7. matplotlib==2.1.0
  8. scipy==1.0.0
  9. Pillow==4.3.0
  10. beautifulsoup4==4.6.0

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.