Kelvinson / AR-Depth-cpp

C++ implementation of Fast Depth Densification for Occlusion-aware Augmented Reality (SIGGRAPH-Asia 2018)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AR-Depth-cpp

1. Overview

This is a C++ implementation of Fast Depth Densification for Occlusion-aware Augmented Reality (SIGGRAPH ASIA2018) and its python implementation.

The code generates dense depth map from sparse depth points of visual SLAM by using variational method.

Sample data is from AR-Depth.

2. Installation

2.1 Dependencies

  1. OpenCV (>3.2)
  2. Eigen 3.3.5

2.3 Build

  • Download the repository.

      git clone https://github.com/muskie82/AR-Depth-cpp.git
    
  • Modify paths to include directories and libraries of TensorFlow in CMakeLists.txt.

  • Build

      cd AR-Depth-cpp
      mkdir build
      cd build
      cmake ..
      make -j4
    

3 Usage

You can run sample program

	./ARDepth

4 Reference

5 License

GPLv3 license.

About

C++ implementation of Fast Depth Densification for Occlusion-aware Augmented Reality (SIGGRAPH-Asia 2018)

License:GNU General Public License v3.0


Languages

Language:C++ 98.8%Language:CMake 1.2%