This repository is dedicated to the implementation of Gaussian Variational Inference (GVI) Motion Planning algorithms. We present 2 algorithms, namely Gaussian Variational Inference Motion Planning (GVI-MP) and Proximal Gradient Covariance Steering Motion Planning (PGCS-MP). The conection between a discrete GVI and continuous-time stochastic control is detailed in the publications in the citing section below.
Motion planning for a 7-DOF WAM robot arm. The animated trajectory is the mean of the trajectory distribution obtained from GVI-MP and PGCS-MP planner, represented by dark gray and silver color, respectively.
Dependencies
- Boost: successful built with Boost1.78.0 Build Boost in a customized location: link Add library path to ld lib path:
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
- Eigen 3.4.0 Download Eigen source and
cd eigen-3.4.0
mkdir build && cd build\
cmake -DCMAKE_INSTALL_PREFIX=prefix_path ..\
make install
git clone https://github.com/hzyu17/gtsam.git
cd gtsam
mkdir build && cd build
cmake -DGTSAM_BUILD_PYTHON:=OFF -DGTSAM_INSTALL_MATLAB_TOOLBOX:=ON \
-DGTSAM_ALLOW_DEPRECATED_SINCE_V4:=OFF -DGTSAM_INSTALL_CYTHON_TOOLBOX:=OFF \
-DGTSAM_USE_SYSTEM_EIGEN:=ON -DGTSAM_BUILD_UNSTABLE:=OFF -DGTSAM_WITH_TBB:=OFF ..
sudo make install
- GPMP2 Build GPMP2 GPMP2 Build and installation:
git clone https://github.com/hzyu17/gpmp2.git
cd gpmp2 && mkdir build && cd build\
cmake -DGPMP2_BUILD_PYTHON_TOOLBOX:=OFF -DGPMP2_BUILD_MATLAB_TOOLBOX:=ON ..
sudo make install
Build and install VIMP
git clone https://github.com/lucasyu17/VIMP.git
mkdir build && cd build\
cmake ..
sudo make install
If you use this repository in your research, please cite the following publications:
@ARTICLE{10068240,
author={Yu, Hongzhe and Chen, Yongxin},
journal={IEEE Robotics and Automation Letters},
title={A Gaussian Variational Inference Approach to Motion Planning},
year={2023},
volume={8},
number={5},
pages={2518-2525},
doi={10.1109/LRA.2023.3256134}}