Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xiaobainixi/ORB-SLAM2_RGBD_DENSE_MAP

This repository is modified from Xiang Gao's "ORB_SLAM2_modified".It is added a dense loopclosing map model.
https://github.com/xiaobainixi/ORB-SLAM2_RGBD_DENSE_MAP

Last synced: 7 days ago
JSON representation

This repository is modified from Xiang Gao's "ORB_SLAM2_modified".It is added a dense loopclosing map model.

Awesome Lists containing this project

README

        

# Update for unpacked ROB_SLAM with pcl view repo

## build:

### build the whole project ( inclouding binary loading tools ):

Before all the cmd, **DONOT** forget to download the Vocabulary form the [origin repo](https://github.com/raulmur/ORB_SLAM2) and place it into dir ./Vocabulary

```bash
chmod +x build.sh
./build.sh
```

### only build the ORB_SLAM2 mode with pcl

```bash
mkdir build
cd build
cmake ..
make -j
```

## Run:

```bash
./run/rgbd_tum Vocabulary/ORBvoc.bin path_to_settings path_to_sequence path_to_association
```

# What are modified:

* adding a pointcloud viewer with loopclosing ( realized by adding a viewer thread )