yilei0620 / RGBD-Slam-Semantic-Seg-DeepLab

The package is common Slam combined with DeepLab-V2-CRF Library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Slam combined with semantic segmentation method to remove movable objects

We implement common slam techniques to reconstruct the RGB-d mapping. Since the method can't deal with movable objects, we are trying to use semantic segmentation method to remove those objects during mapping (person, cat, car, bus ...). The semantic segmentation library used is DeepLab-V2 VGG-16 based model.

Result

The result of common technique of slam: alt tag

The result of method combined with deeplab: alt tag

Failed Result

The result of technique using deep learning method is heavily based on the accuracy of machine learning model. For example, here we can see that we can't remove all configurations of the person in the scene but we can remove his last configuration. This is because the DeepLab can't recognize this person when just a part of him that can be seen. In the future, we should try some better semantic segmentation model such as DeepLab-V3 or PsPNet. alt tag

We also can try real time semantic segmentation model such as ICNet to help with filtering movable objects' features in order to improve PnP RANSAC accuracy and efficiency.

Installation

The package is based on OpenCV 3.3, Ceres and DeepLab-V2. The installation process can be found on those links. The DeepLab package supports CPU only devices (I correct the error when compiling CPU only mode and also change the number of outputs of MemoryDataLayer in order to run CRF layer).

Compilation of DeepLab is the same as compiling process as Caffe. Please compile the deeplab package provided in the repository.

After install all of above packages, please copy Ceres and DeepLab cmake files (which should be in the path as /ceres_solver/cmake/ ) in to directoryslam_deeplab/cmake_modules/. Then, compile the package by standard cmake process:

mkdir build cd build cmake .. make

The package was tested on Ubuntu 14.04 and 16.04. When compiling in the Ubuntu 16.04, please edit src/Cmakelist.txt. Details please see the file.

Experiment

RGB data should be stored in ./data/rgb_png/ and named as 1.png,2.png. Depth data should be stored in ./data/depth_png/ and named as the same way of RGB images.

parameters.txt is for setting parameters for both two methods. Detail please see the file.

bin/slam is for common method. bin/slamDP is for learning based method.

About

The package is common Slam combined with DeepLab-V2-CRF Library.


Languages

Language:C++ 58.0%Language:Jupyter Notebook 26.5%Language:Python 5.7%Language:Cuda 4.3%Language:MATLAB 2.3%Language:CMake 2.0%Language:Makefile 0.5%Language:Shell 0.4%Language:CSS 0.2%Language:HTML 0.1%Language:C 0.0%Language:Limbo 0.0%Language:M 0.0%