★★★ New version of FC-DCNN (FC-DCNN2) with improved EPE and additional trained weights is online and can be found at https://github.com/thedodo/fc-dcnn2 ★★★
Dominik Hirner, Friedrich Fraundorfer
An pytorch implementation of a lightweight fully-convolutional densely connected neural network method for disparity estimation. This method has been accepted and will be published at the ICPR 2020 conference. If you use our work please cite our paper
A demo of this network is available online in Google Colab. Demo
Demo Video of the MPI dataset:
The whole project is in pure python 3.6.
This repository contains
- jupyter notebooks for training and inference of disparity via a stereo-pair
- python3.6 code for training and inference
- trained weights for many publicly available datasets
The network was trained and tested on a GeForce RTX 2080 with 11GB of RAM. The code is released under the BSD 2-Clause license. Please cite our paper (link) if you use code from this repository in your work.
Middlebury | Kitti | ETH3D |
We use a trainable guided filter for the cost-volume (see project). This can be installed via pip.
pip install guided-filter-pytorch
If you want to do inference on any rectified image-pair call the test.py function from the root of this repository as follows:
python test.py --weights path/to/weight --left path/to/left_im.png --right /path/to/right_im.png --max_disp max_disp --out /path/to/out/out_name
Download the Middlebury weights from the link above and put it in the weights folder in the root of this repository. Then copy and paste the following:
python test.py --weights weights/mb --left example/im0.png --right example/im1.png --max_disp 140 --out motorcycle
If everything went ok this should produce the following output:
- motorcycle.pfm: filtered disparity output of the network
- motorcycle_and_med_mask.png: calculated foreground/background mask (see paper)
- motorcycle_s.pfm: disparity map with removed inconsistencies
- motorcycle_filled.pfm: disparity with updated inconsistencies (see paper)
For convenience the jupyter-notebooks fc-dcnn-eval.ipynb and fc-dcnn-submit.ipynb are available in the jupyter subfolder of this repository. The fc-dcnn-eval.ipynb notebook is for use on a single image to try out the network. fc-dcnn-submit.ipynb is for batch-use on multiple images in one script for either submission or to get an average error over the whole set (given in EPE).
For training yourself call the function train.py from the root of this repository. The hyperparameters are stored in a .cfg file. See the example in the config subfolder of this repository.
The network is called as follows:
python train.py path/to/config.cfg
Example use:
python train.py config/train.cfg
Note: Please change the input_folder directory to your local directory. By default the weights are saved into the save_weights directory that is located in the root of this repository.
- transfer_train: Boolean. If true the according weight must be stored in the weights subfolder
- dataset: Which dataset you want to train: MB, ETH, KITTI2012 or KITTI2015. If you want to train on your own dataset adapt one of these dataloader functions to fit your need
- model_name: string used as prefix to save weights
- input_folder: folder were the trainings data is stored. If it is one of the pre-trained datasets keep the naming and folder-structure exactly as they are when downloaded
- batch_size: How many batches (random crops) are used per batch
- nr_batches: number of batches per iteration
- nr_epochs: how many epochs the network is trained
- num_conv_feature_maps: how many feature maps are used per layer. The value for the trained networks is 64. Because of the dense layer structure the network complexity can increase drastically if this is value is increased
-save_weights: save weights every X epoch. If you want to store the weights of every epoch set this value to 1
- patch_size: size of the crop for the training data. This is dependent on the perceptive field.
- r_low and r_high: random offset used for the negative patch creation.
For your convenience the train script is also available as jupyter-notebook as fc-dcnn-train.ipynb in the jupyter subfolder.