JiaxiongQ / DeepLiDAR

Deep Surface Normal Guided Depth Prediction for Outdoor Scene from Sparse LiDAR Data and Single Color Image (CVPR 2019)
MIT License
246 stars 49 forks source link

DeepLiDAR

This repository contains the code (in PyTorch) for "DeepLiDAR: Deep Surface Normal Guided Depth Prediction for Outdoor Scene from Sparse LiDAR Data and Single Color Image" paper (CVPR 2019) by Jiaxiong Qiu, Zhaopeng Cui, Yinda Zhang, Xingdi Zhang, Shuaicheng Liu, Bing Zeng and Marc Pollefeys.

Introduction

In this work, we propose an end-to-end deep learning system to produce dense depth from sparse LiDAR data and a color image taken from outdoor on-road scenes leveraging surface normal as the intermediate representation. image

Requirements

Download Link

Train

  1. Get the surface normal of Lidar dataset by running the code in the project named 'surface_normal'.

  2. Use the training strategy in the folder named 'trainings'.

    Evaluation

  3. Fill the names of the folders in 'test.py':

    'gt_fold': the location of your groundtruth folder;
    'left_fold': the location of your RGB image folder;
    'lidar2_raw': the location of your Sparse(LiDAR) depth folder.
  4. Use the following command to evaluate the trained on your own data.

    python test.py --loadmodel (your trained model)

    Citation

    If you use our code or method in your work, please cite the following:

    @InProceedings{Qiu_2019_CVPR,
    author = {Qiu, Jiaxiong and Cui, Zhaopeng and Zhang, Yinda and Zhang, Xingdi and Liu, Shuaicheng and Zeng, Bing and Pollefeys, Marc},
    title = {DeepLiDAR: Deep Surface Normal Guided Depth Prediction for Outdoor Scene From Sparse LiDAR Data and Single Color Image},
    booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
    month = {June},
    year = {2019}
    }

    Please direct any questions to Jiaxiong Qiu at qiujiaxiong727@gmail.com