SkillAgentSearch skills...

Ssvio

A lightweight setero visual SLAM system implementation, including complete closed-loop detection, front-end tracking, back-end optimization, visualization and other parts.

Install / Use

/learn @weihaoysgs/Ssvio
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Simple Stereo Visual Inertial SLAM(SSVIO)

<div align="center">

English | 简体中文

</div>

A lightweight setereo visual-inertial SLAM system implementation, including complete closed-loop detection, front-end tracking, back-end optimization, visualization and other parts. This warehouse is more friendly to students who are new to SLAM. At the same time, the performance of this system is evaluated on the Kitti dataset. Although there is still a certain distance from the SOTA method, it is basically a usable visual odometry system.You can see a more detailed running effect of the entire project on bilibili.

<div align=center><img src="./result//run_kitti_00.gif" width = 60%></div>

Install 🛠️

  • Opencv3.2 needs to be installed in advance, of course, its 3.x version should also be applicable.
  • At the same time we use Pangolin0.6 for visualization.
sudo apt install libgoogle-glogdev libeigen-dev libsuitesparse-dev libcholmod3
cd thirdparty/g2o
mkdir build
cmake ..
make -j

cd ../DBoW2
mkdir build
cd build
cmake ..
make -j
  • Next compile our project
mkdir build && cd build
cmake ..
make -j

Running SSVIO 🏃

You need to pass in two parameters via the command line according to the glog, the example as follow

../bin/test_system \
--config_yaml_path=/home/xxx/ssvio/config/kitti_00.yaml \
--kitti_dataset_path=/home/xxx/kitti/dataset/sequences/00

System Result On Kitti Dataset🏋️

We verified the SLAM algorithm in this warehouse on the Kitti dataset, and compared the results with and without loop closure, the evaluate tool is evo tool ,as shown below.

<table> <tr> <td><center><img src="./result/backend_no_loop.png" width = 90%></center><center>Without Loop On Kitti 00 Seq</center></td> <td><center><img src="./result/loop.png" width = 95%></center><center>With Loop On Kitti 00 Seq</center></td> </tr> </table>

Citation 📝

TODO📜

  • [ ] Update Pangolin UI
  • [ ] Add IMU to backend opt
  • [ ] Embed LightGlue into the front end

Related Skills

View on GitHub
GitHub Stars109
CategoryDevelopment
Updated1mo ago
Forks14

Languages

C++

Security Score

85/100

Audited on Feb 17, 2026

No findings