• Stars
    star
    256
  • Rank 154,058 (Top 4 %)
  • Language
    C++
  • License
    Other
  • Created over 8 years ago
  • Updated almost 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

OKVIS: Open Keyframe-based Visual-Inertial SLAM (ROS Version)

README {#mainpage}

Welcome to OKVIS: Open Keyframe-based Visual-Inertial SLAM.

This is the Author's implementation of the [1] and [3] with more results in [2].

[1] Stefan Leutenegger, Simon Lynen, Michael Bosse, Roland Siegwart and Paul Timothy Furgale. Keyframe-based visual–inertial odometry using nonlinear optimization. The International Journal of Robotics Research, 2015.

[2] Stefan Leutenegger. Unmanned Solar Airplanes: Design and Algorithms for Efficient and Robust Autonomous Operation. Doctoral dissertation, 2014.

[3] Stefan Leutenegger, Paul Timothy Furgale, Vincent Rabaud, Margarita Chli, Kurt Konolige, Roland Siegwart. Keyframe-Based Visual-Inertial SLAM using Nonlinear Optimization. In Proceedings of Robotics: Science and Systems, 2013.

Note that the codebase that you are provided here is free of charge and without any warranty. This is bleeding edge research software.

Also note that the quaternion standard has been adapted to match Eigen/ROS, thus some related mathematical description in [1,2,3] will not match the implementation here.

If you publish work that relates to this software, please cite at least [1].

How do I get set up?

This is a catkin package that wraps the pure CMake project.

You will need to install the following dependencies,

  • ROS (currently supported: hydro, indigo and jade). Read the instructions in http://wiki.ros.org/indigo/Installation/Ubuntu. You will need the additional package pcl-ros as (assuming indigo)

      sudo apt-get install ros-indigo-pcl-ros
    
  • google-glog + gflags,

      sudo apt-get install libgoogle-glog-dev
    
  • The following should get installed through ROS anyway:

      sudo apt-get install libatlas-base-dev libeigen3-dev libsuitesparse-dev 
      sudo apt-get install libopencv-dev libboost-dev libboost-filesystem-dev
    
  • Optional: use the the package with the Skybotix VI sensor. Note that this requires a system install, not just as ROS package. Also note that Skybotix OSX support is experimental (checkout the feature/osx branch).

      git clone https://github.com/ethz-asl/libvisensor.git
      cd libvisensor
      ./install_libvisensor.sh
    

then download and expand the archive into your catkin workspace:

wget https://www.doc.ic.ac.uk/~sleutene/software/okvis_ros-1.1.3.zip
unzip okvis_ros-1.1.3.zip && rm okvis_ros-1.1.3.zip

Or, clone the repository from github into your catkin workspace:

git clone --recursive [email protected]:ethz-asl/okvis_ros.git

or

git clone --recursive https://github.com/ethz-asl/okvis_ros.git

Building the project

From the catkin workspace root, type

catkin_make

You will find a demo application in okvis_apps. It can process datasets in the ASL/ETH format.

In order to run a minimal working example, follow the steps below:

  1. Download a dataset of your choice from http://projects.asl.ethz.ch/datasets/doku.php?id=kmavvisualinertialdatasets. Assuming you downloaded MH_01_easy/. You will find a corresponding calibration / estimator configuration in the okvis/config folder.

  2. Run the app as

     ./okvis_apps path/to/okvis_ros/okvis/config/config_fpga_p2_euroc.yaml path/to/MH_01_easy/
    

You can also run a dataset processing ros node that will publish topics that can be visualized with rviz

rosrun okvis_ros okvis_node_synchronous path/to/okvis_ros/okvis/config/config_fpga_p2_euroc.yaml path/to/MH_01_easy/

Use the rviz.rviz configuration in the okvis_ros/config/ directory to get the pose / landmark display.

If you want to run the live application connecting to a sensor, use the okvis_node application (modify the launch file launch/okvis_node.launch).

Outputs and frames

In terms of coordinate frames and notation,

  • W denotes the OKVIS World frame (z up),
  • C_i denotes the i-th camera frame,
  • S denotes the IMU sensor frame,
  • B denotes a (user-specified) body frame.

The output of the okvis library is the pose T_WS as a position r_WS and quaternion q_WS, followed by the velocity in World frame v_W and gyro biases (b_g) as well as accelerometer biases (b_a). See the example application to get an idea on how to use the estimator and its outputs (callbacks returning states).

The okvis_node ROS application will publish a configurable state -- see just below.

Configuration files

The okvis/config folder contains example configuration files. Please read the documentation of the individual parameters in the yaml file carefully. You have various options to trade-off accuracy and computational expense as well as to enable online calibration. You also have various options concerning the things that will get published -- in particular weather or not landmarks should be published (may be important to turn off for on-bard operation). Moreover, you can specify how the body frame is specified (T_BS) or define a custom World frame. In other words, the final pose published will be T_Wc_B = T_Wc_W * T_WS * T_BS^(-1) . You have the option to express the velocity as well as the rotation rates in either B, S, or Wc.

HEALTH WARNING: calibration

If you would like to run the software/library on your own hardware setup, be aware that good results (or results at all) may only be obtained with appropriate calibration of the

  • camera intrinsics,
  • camera extrinsics (poses relative to the IMU),
  • knowledge about the IMU noise parameters,
  • and ACCURATE TIME SYNCHRONISATION OF ALL SENSORS.

To perform a calibration yourself, we recommend the following:

Contribution guidelines

Support

The developpers will be happy to assist you or to consider bug reports / feature requests. But questions that can be answered reading this document will be ignored. Please contact [email protected].

More Repositories

1

kalibr

The Kalibr visual-inertial calibration toolbox
C++
4,067
star
2

maplab

A Modular and Multi-Modal Mapping Framework
C++
2,471
star
3

voxblox

A library for flexible voxel-based mapping, mainly focusing on truncated and Euclidean signed distance fields.
C++
1,260
star
4

rotors_simulator

RotorS is a UAV gazebo simulator
C++
1,168
star
5

okvis

OKVIS: Open Keyframe-based Visual-Inertial SLAM.
C++
1,158
star
6

rovio

C++
1,098
star
7

segmap

A map representation based on 3D segments
C++
1,045
star
8

ethzasl_msf

MSF - Modular framework for multi sensor fusion based on an Extended Kalman Filter (EKF)
C++
961
star
9

lidar_align

A simple method for finding the extrinsic calibration between a 3D lidar and a 6-dof pose sensor
C++
773
star
10

hfnet

From Coarse to Fine: Robust Hierarchical Localization at Large Scale with HF-Net (https://arxiv.org/abs/1812.03506)
Python
739
star
11

aerial_mapper

Real-time Dense Point Cloud, Digital Surface Map (DSM) and (Ortho-)Mosaic Generation for UAVs
C++
524
star
12

robust_point_cloud_registration

Robust Point Cloud Registration Using Iterative Probabilistic Data Associations ("Robust ICP")
C++
513
star
13

voxgraph

Voxblox-based Pose graph optimization
C++
509
star
14

mav_trajectory_generation

Polynomial trajectory generation and optimization, especially for rotary-wing MAVs.
C++
508
star
15

mav_active_3d_planning

Modular framework for online informative path planning.
C++
507
star
16

polygon_coverage_planning

Coverage planning in general polygons with holes.
C++
458
star
17

mav_voxblox_planning

MAV planning tools using voxblox as the map representation.
Makefile
440
star
18

hand_eye_calibration

Python tools to perform time-synchronization and hand-eye calibration.
Python
422
star
19

voxblox-plusplus

A volumetric object-level semantic mapping framework.
C++
390
star
20

dynablox

Real-time detection of diverse dynamic objects in complex environments.
C++
368
star
21

mav_control_rw

Control strategies for rotary wing Micro Aerial Vehicles using ROS
C
324
star
22

ethzasl_sensor_fusion

time delay single and multi sensor fusion framework based on an EKF
C++
322
star
23

nbvplanner

A real-time capable exploration and inspection path planner (next best view planning)
C++
295
star
24

ethzasl_icp_mapping

3D mapping tools for robotic applications
C++
268
star
25

panoptic_mapping

A flexible submap-based framework towards spatio-temporally consistent volumetric mapping and scene understanding.
C++
266
star
26

laser_slam

This package provides an end-to-end system to laser-based graph SLAM using laser point clouds.
C++
246
star
27

versavis

An Open Versatile Multi-Camera Visual-Inertial Sensor Suite
C++
240
star
28

image_undistort

A compact package for undistorting images directly from kalibr calibration files. Can also perform dense stereo estimation
C++
239
star
29

kitti_to_rosbag

Dataset tools for working with the KITTI dataset raw data ( http://www.cvlibs.net/datasets/kitti/raw_data.php ) and converting it to a ROS bag. Also allows a library for direct access to poses, velodyne scans, and images.
C++
239
star
30

ethzasl_ptam

Modified version of Parallel Tracking and Mapping (PTAM)
C++
235
star
31

geodetic_utils

Simple library for converting coordinates to/from several geodetic frames (lat/lon, ECEF, ENU, NED, etc.)
C++
233
star
32

wavemap

Fast, efficient and accurate multi-resolution, multi-sensor 3D occupancy mapping
C++
226
star
33

cblox

Voxblox-based submapping
C++
202
star
34

aslam_cv2

C++
196
star
35

volumetric_mapping

A repository for 3D volumetric (occupancy) maps, providing a generic interface for disparity map and pointcloud insertion, and support for custom sensor error models.
C++
183
star
36

vgn

Real-time 6 DOF grasp detection in clutter.
Python
181
star
37

hierarchical_loc

Deep image retrieval for efficient 6-DoF localization
Python
172
star
38

orb_slam_2_ros

ROS interface for ORBSLAM2!!
C++
171
star
39

glocal_exploration

Efficient local and global exploration on submap collections with changing past pose estimates.
C++
165
star
40

mav_dji_ros_interface

Interface of DJI autopilot based on its OSDK (3.2)
C++
156
star
41

programming_guidelines

This repository contains style-guides, discussions, eclipse/emacs auto-formatter for commonly used programming languages
Emacs Lisp
139
star
42

lidar_undistortion

Catkin package that provides lidar motion undistortion based on an external 6DoF pose estimation input.
C++
138
star
43

tsdf-plusplus

TSDF++: A Multi-Object Formulation for Dynamic Object Tracking and Reconstruction
C++
135
star
44

odom_predictor

Integrates an IMU to predict future odometry readings
C++
134
star
45

depth_segmentation

A collection of segmentation methods working on depth images
C++
128
star
46

neuralblox

Real-time Neural Representation Fusion for Robust Volumetric Mapping
Python
126
star
47

grid_map_geo

Geolocalization for grid map using GDAL.
C++
111
star
48

phaser

A robust pointcloud registration pipeline based on correlation.
C++
106
star
49

eth_supermegabot

Instructions for ETH center for robotics summer school 2019.
Python
103
star
50

StructuralInspectionPlanner

ASL Structural Inspection Planner
C++
103
star
51

waypoint_navigator

Stand-alone waypoint navigator
C++
96
star
52

ethzasl_xsens_driver

Driver for xsens IMUs
Python
96
star
53

mav_tools_public

General launch files, parameters and wiki entries on our systems and related issues
95
star
54

reinmav-gym

Reinforcement Learning framework for MAVs using the OpenAI Gym environment
Python
90
star
55

minkindr

A minimal library for transformations, following the kindr interface. Uses active quaternions of rotation in Hamilton notation.
C++
88
star
56

cuckoo_time_translator

algorithms for synchronizing clocks
C++
87
star
57

data-driven-dynamics

Data Driven Dynamics Modeling for Aerial Vehicles
Python
86
star
58

sl_sensor

SL Sensor: An open-source, real-time and ROS-based structured light sensor for high accuracy construction robotic applications
C++
84
star
59

ethz_piksi_ros

ROS drivers for the Piksi RTK GPS module
C++
81
star
60

unreal_airsim

Simulation interface to Unreal Engine 4 based on the AirSim plugin.
C++
80
star
61

vicon_bridge

This is a driver providing data from VICON motion capture systems. It is based on the vicon_mocap package from the starmac stacks. Additionally, it can handle multiple subjects / segments and allows to calibrate an origin of the vehicle(s) as this is somehow tedious with the VICON Tracker.
C++
80
star
62

ros-system-monitor

System monitoring tools for ROS.
Python
80
star
63

voxblox_ground_truth

Create ground truth voxblox maps from Gazebo worlds or .ply files
C++
76
star
64

navrep

Python
73
star
65

curves

A library of curves for estimation.
C++
72
star
66

schweizer_messer

Programming tools for robotics.
C++
65
star
67

time_autosync

Automatically syncs a camera to a rigidly attached IMUs time frame
C++
63
star
68

unreal_cv_ros

Unreal CV ROS Perception Simulator
Python
62
star
69

ai_for_robotics

Programming Exercises Accompanying the Lecture "Artificial Intelligence for Robotics"
Python
60
star
70

lcd

Line Clustering and Description for Place Recognition
C++
59
star
71

trajectory_toolkit

Python tool for analyzing and evaluating trajectory data
Python
59
star
72

dataset_tools

Loader for the generic ASL dataset formats.
MATLAB
58
star
73

rl-navigation

OpenEdge ABL
57
star
74

asl-student-templates

Templates and overview information for student projects at ASL
PostScript
56
star
75

libseekthermal

Driver library for Seek Thermal imaging devices
C++
55
star
76

plotty

matplotlib-cpp with Eigen interfaces.
C++
51
star
77

3d_vsg

3D Variable Scene Graphs for long-term semantic scene change prediction.
Python
49
star
78

terrain-navigation

Repository for Safe Low Altitude Navigation in steep terrain for fixed-wing Aerial Vehicles (RA-L Submission)
C++
49
star
79

forest_gen

Generates randomized Poisson forests to use for UAV collision avoidance evaluations.
Python
47
star
80

sampling_based_control

Jupyter Notebook
47
star
81

tmplanner

Terrain monitoring planner
C++
45
star
82

reactive_avoidance

Reactive obstacle avoidance using raytracing or lidars
C++
45
star
83

3d3l

Deep Learned Keypoint Detection and Description for 3D LiDARs
Python
44
star
84

visensor_node

Visual inertial SLAM sensor ROS node.
C++
43
star
85

mav_comm

This repository contains message and service definitions used for mavs. All future message definitions go in here, existing ones in other stacks should be moved here where possible.
C++
43
star
86

maplab_rovio

Hard-fork of ROVIO to integrate localization.
C++
41
star
87

autolabel

A project for computing high-quality ground truth training examples for RGB-D data.
Python
41
star
88

active_grasp

Closed-loop next-best view planning for grasp detection in clutter.
Python
41
star
89

two_state_information_filter

C++
41
star
90

ssc_exploration

Incremental 3D Scene Completion for Safe and Efficient Exploration Mapping and Planning
41
star
91

Learn-to-Calibrate

We utilize deep reinforcement learning to obtain favorable trajectories for visual-inertial system calibration.
C++
41
star
92

rtklibros

rtklib with ros interfacing and adapted feedback from external Kalman filter
C
40
star
93

cvae_exploration_planning

Learning informed sampling distributions and information gains for efficient exploration planning.
Python
40
star
94

libvisensor

Low level hardware driver for the visual inertial SLAM sensor.
C++
39
star
95

mav_gtsam_estimator

A GTSAM based state estimation framework.
C++
39
star
96

mav_system_identification

Matlab scripts to perform system identification for muti-rotor systems
MATLAB
38
star
97

x-view

38
star
98

matlab_trajectory_tools

Tools for enabling quick display and analysis of trajectories and transformations in Matlab.
MATLAB
38
star
99

fgsp

Jupyter Notebook
38
star
100

3dsnet

3DSNet: Unsupervised Shape-to-shape 3D Style Transfer
C++
37
star