lgmath is a C++ library for handling geometry in state estimation problems in robotics. It is used to store, manipulate, and apply three-dimensional rotations and transformations and their associated uncertainties.
There are no minimal, constraint-free, singularity-free representations for these quantities, so lgmath exploits two different representations for the nominal and noisy parts of the uncertain random variable.
- Nominal rotations and transformations are represented using their composable, singularity-free matrix Lie groups, SO(3) and SE(3).
- Their uncertainties are represented as multiplicative perturbations on the minimal, constraint-free vectorspaces of their Lie algebras, *so**(3)* and *se**(3)*.
This library uses concepts and mathematics described in Timothy D. Barfoot's book State Estimation for Robotics. It is used for robotics research at the Autonomous Space Robotics Lab; most notably in the STEAM Engine, a library for Simultaneous Trajectory Estimation and Mapping.
- Compiler with C++17 support
- CMake (>=3.16)
- Eigen (>=3.3.7)
- (Optional) ROS2 Foxy or later (colcon+ament_cmake)
- (Optional) Autodiff
sudo apt -q -y install build-essential cmake# using APT
sudo apt -q -y install libeigen3-dev
# OR from source
WORKSPACE=~/workspace # choose your own workspace directory
mkdir -p ${WORKSPACE}/eigen && cd $_
git clone https://gitlab.com/libeigen/eigen.git . && git checkout 3.3.7
mkdir build && cd $_
cmake .. && make install # default install location is /usr/local/- Note: if installed from source to a custom location then make sure
cmakecan find it.
WORKSPACE=~/workspace # choose your own workspace directory
# clone
mkdir -p ${WORKSPACE}/lgmath && cd $_
git clone https://github.com/utiasASRL/lgmath.git .
# build and install
mkdir -p build && cd $_
cmake ..
cmake --build .
cmake --install . # (optional) install, default location is /usr/local/
make doc # (optional) generate documentation in ./docNote: lgmathConfig.cmake will be generated in both build/ and <install prefix>/lib/cmake/lgmath/ to be included in other projects.
WORKSPACE=~/workspace # choose your own workspace directory
mkdir -p ${WORKSPACE}/lgmath && cd $_
git clone https://github.com/utiasASRL/lgmath.git .
source <your ROS2 worspace>
colcon build --symlink-install --cmake-args "-DUSE_AMENT=ON"
colcon build --symlink-install --cmake-args "-DUSE_AMENT=ON" --cmake-target doc # (optional) generate documentation in ./build/docAutodiff is a C++ library for automatic differentiation. For more details, refer to the Autodiff documentation.
lgmath optionally supports autodiff forward mode using the real1st type. This support is optionally included in the header files for lgmath. To use in your project, add the DUSE_AUTODIFF flag to your compiler flags. To use, replace the scalar on all input Eigen types to autodiff::real1st.
#include <lgmath.hpp>
#include <autodiff/forward/real.hpp>
#include <autodiff/forward/real/eigen.hpp>
int main(int argc, char *argv[]) {
// Regular usage
Eigen::Matrix<double, 6, 1> xi_double;
xi_double.setRandom();
Eigen::Matrix<double, 6, 6> xi_double_hat = lgmath::se3::curlyhat(xi_double);
// Autodiff usage -- Requires USE_AUTODIFF compiler flag
Eigen::Matrix<autodiff::real1st, 6, 1> xi_real;
xi_real.setRandom();
Eigen::Matrix<autodiff::real1st, 6, 6> xi_real_hat = lgmath::se3::curlyhat(xi_real);
return 1;
}