An open API service indexing awesome lists of open source software.

https://github.com/hiroishida/ompl-thin-python

A thin python-binding of OMPL motion planning library
https://github.com/hiroishida/ompl-thin-python

Last synced: 2 months ago
JSON representation

A thin python-binding of OMPL motion planning library

Awesome Lists containing this project

README

        

## ompl-thin [![pypi-version](https://badge.fury.io/py/ompl-thin.svg)](https://pypi.org/project/ompl-thin/)
is a thin wrapper of [ompl](https://github.com/ompl/ompl). For a thick wrapper, please see ompl's [official python bindings](https://ompl.kavrakilab.org/python.html).

Advantage of this package mainly likes in quickness and simpleness of building, which is achieved by focusing on only *thin-wrapping* the ompl pacakge and utilizing pybind11.

## installation
The package is available on [pypi](https://pypi.org/project/ompl-thin/). So, to install you just need to
```bash
pip3 install ompl-thin
```
NOTE: binary distribution is available only for x86_64. For other architecture, only source distributions are available and takes few minutes to install. Also, before installation, you need to run the following to get shared dependency.
```
sudo apt install libboost-all-dev -y
```