Skip to content
/ VIMP Public
forked from hzyu17/VIMP

Motion planning via variational inference

Notifications You must be signed in to change notification settings

ChenZhenY/VIMP

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stochastic motion planning as Gaussian Variational Inference.

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.

Point Robot Motion Planning: entropy regularized robust motion planning

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

  1. 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
  1. 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 

  1. Matplot++ Matplot++

  2. GTSAM Build GTSAM GTSAM Build and installation:

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
  1. 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 

Citing

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}}

About

Motion planning via variational inference

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • MATLAB 69.3%
  • C++ 22.2%
  • Makefile 5.3%
  • Python 2.0%
  • CMake 1.2%
  • C 0.0%