basalt/README.md

78 lines
3.8 KiB
Markdown
Raw Normal View History

2019-04-17 13:23:17 +02:00
[![pipeline status](https://gitlab.com/VladyslavUsenko/basalt/badges/master/pipeline.svg)](https://gitlab.com/VladyslavUsenko/basalt/commits/master)
2019-04-14 21:07:42 +02:00
## Basalt
For more information see https://vision.in.tum.de/research/vslam/basalt
![teaser](doc/img/teaser.png)
This project contains tools for:
* Camera, IMU and motion capture calibration.
* Visual-inertial odometry and mapping.
* Simulated environment to test different components of the system.
2019-08-30 15:51:19 +02:00
Some reusable components of the system are availble as a separate [header-only library](https://gitlab.com/VladyslavUsenko/basalt-headers) ([Documentation](https://vladyslavusenko.gitlab.io/basalt-headers/)).
2019-04-14 21:07:42 +02:00
2019-11-06 10:38:10 +01:00
There is also a [Github mirror](https://github.com/VladyslavUsenko/basalt-mirror) of this project to enable easy forking.
2019-04-14 21:07:42 +02:00
## Related Publications
Visual-Inertial Odometry and Mapping:
2019-04-16 08:13:21 +02:00
* **Visual-Inertial Mapping with Non-Linear Factor Recovery**, V. Usenko, N. Demmel, D. Schubert, J. Stückler, D. Cremers, In [[arXiv:1904.06504]](https://arxiv.org/abs/1904.06504).
2019-04-14 21:07:42 +02:00
Calibration (explains implemented camera models):
* **The Double Sphere Camera Model**, V. Usenko and N. Demmel and D. Cremers, In 2018 International Conference on 3D Vision (3DV), [[DOI:10.1109/3DV.2018.00069]](https://doi.org/10.1109/3DV.2018.00069), [[arXiv:1807.08957]](https://arxiv.org/abs/1807.08957).
Calibration (demonstrates how these tools can be used for dataset calibration):
* **The TUM VI Benchmark for Evaluating Visual-Inertial Odometry**, D. Schubert, T. Goll, N. Demmel, V. Usenko, J. Stückler, D. Cremers, In 2018 International Conference on Intelligent Robots and Systems (IROS), [[DOI:10.1109/IROS.2018.8593419]](https://doi.org/10.1109/IROS.2018.8593419), [[arXiv:1804.06120]](https://arxiv.org/abs/1804.06120).
2019-12-03 16:15:06 +01:00
Calibration (describes B-spline trajectory representation used in camera-IMU calibration):
* **Efficient Derivative Computation for Cumulative B-Splines on Lie Groups**, C. Sommer, V. Usenko, D. Schubert, N. Demmel, D. Cremers, In [[arXiv:1911.08860]](https://arxiv.org/abs/1911.08860).
2019-04-14 21:07:42 +02:00
## Installation
### APT installation for Ubuntu 16.04 and 18.04 (Fast)
Set up keys
```
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0D97B6C9
```
Add the repository to the sources list. On **Ubuntu 18.04** run:
```
sudo sh -c 'echo "deb [arch=amd64] http://packages.usenko.eu/ubuntu bionic main" > /etc/apt/sources.list.d/basalt.list'
```
On **Ubuntu 16.04** run:
```
sudo sh -c 'echo "deb [arch=amd64] http://packages.usenko.eu/ubuntu xenial main" > /etc/apt/sources.list.d/basalt.list'
```
Update the Ubuntu package index and install Basalt:
```
sudo apt-get update
sudo apt-get install basalt
```
### Source installation for Ubuntu 18.04 and MacOS >= 10.11 El Capitan
2019-04-15 11:34:45 +02:00
Clone the source code for the project and build it. For MacOS you should have [Homebrew](https://brew.sh/) installed.
2019-04-14 21:07:42 +02:00
```
git clone --recursive https://gitlab.com/VladyslavUsenko/basalt.git
cd basalt
./scripts/install_deps.sh
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
make -j8
```
2019-04-15 11:34:45 +02:00
NOTE: It is possible to compile the code on Ubuntu 16.04, but you need to install cmake-3.10 or higher and gcc-7. See corresponding [Dockerfile](docker/b_image_xenial/Dockerfile) as an example.
2019-04-14 21:07:42 +02:00
## Usage
2019-08-26 17:55:03 +02:00
* [Camera, IMU and Mocap calibration. (TUM-VI, Euroc, UZH-FPV and Kalibr datasets)](doc/Calibration.md)
2019-08-05 14:39:34 +02:00
* [Visual-inertial odometry and mapping. (TUM-VI and Euroc datasets)](doc/VioMapping.md)
2019-09-10 17:40:06 +02:00
* [Visual odometry (no IMU). (KITTI dataset)](doc/Vo.md)
2019-04-14 21:07:42 +02:00
* [Simulation tools to test different components of the system.](doc/Simulation.md)
2019-10-01 17:22:42 +02:00
## Device support
* [Tutorial on Camera-IMU and Motion capture calibration with Realsense T265.](doc/Realsense.md)
2019-05-15 11:28:35 +02:00
## Development
* [Development environment setup.](doc/DevSetup.md)
2019-04-14 21:07:42 +02:00
## Licence
2019-04-15 14:06:25 +02:00
The code is provided under a BSD 3-clause license. See the LICENSE file for details.
2019-04-14 21:07:42 +02:00
Note also the different licenses of thirdparty submodules.