项目作者: XinJCheng

项目描述 :
Convolutional Spatial Propagation Network
高级语言: Python
项目地址: git://github.com/XinJCheng/CSPN.git
创建时间: 2018-07-19T07:13:03Z
项目社区:https://github.com/XinJCheng/CSPN

开源协议:

下载


Convolutional Spatial Propagation Network

By Xinjing Cheng, Peng Wang, Chenye Guan and Ruigang Yang

Contents

  1. Introduction
  2. Citation

Introduction

This repo contains the CSPN models trained for depth completion and stereo depth estimation, as as described in the paper “Depth Estimation via Affinity Learned with Convolutional Spatial Propagation Network“ and “
Learning Depth with Convolutional Spatial Propagation Network

We provide two implementations here. First, we implement a naive 2D CSPN by Pytorch which combine ‘offsite’ and ‘conv’ operations. Then, we provide a more efficient implementation of 2D/3D CSPN by CUDA and integrated them to the PaddlePaddle, which is more stable and easy to use.

Citation

If you use this method in your research, please cite:

  1. @inproceedings{cheng2018depth,
  2. title={Depth estimation via affinity learned with convolutional spatial propagation network},
  3. author={Cheng, Xinjing and Wang, Peng and Yang, Ruigang},
  4. booktitle={Proceedings of the European Conference on Computer Vision (ECCV)},
  5. pages={103--119},
  6. year={2018}
  7. }
  1. @article{cheng2019learning,
  2. title={Learning depth with convolutional spatial propagation network},
  3. author={Cheng, Xinjing and Wang, Peng and Yang, Ruigang},
  4. journal={IEEE transactions on pattern analysis and machine intelligence},
  5. year={2019},
  6. publisher={IEEE}
  7. }