Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/zhm-real/curvesgenerator

Common used curves for motion planning.
https://github.com/zhm-real/curvesgenerator

bezier-curves bspline cubic-splines dubins-curve dubins-path quartic-polynomial quintic-polynomial reeds-shepp-curves

Last synced: 3 days ago
JSON representation

Common used curves for motion planning.

Awesome Lists containing this project

README

        

# CurvesGenerator
## Overview
This repository concludes some common used curves or polynomials on path planning.

## Dubins Path


rs1
rs2

## Reeds-Shepp Path


rs1
rs2

## Bezier Path


rs1
rs2

## B-Spline Line & Quintic Polynomial


rs1
rs2

## Reference
* [Paper: ](https://projecteuclid.org/download/pdf_1/euclid.pjm/1102645450) Optimal paths for a car that goes both forwards and backwards, by J. A. REEDS & L. A. SHEPP.
* [Adapted Paper: ](http://msl.cs.uiuc.edu/~lavalle/cs326a/rs.c) Some typos in the paper adapted.
* [Book Chapter: ](http://planning.cs.uiuc.edu/node822.html) Planning Algorithm by Steven M. LaValle.
* [C++ Version: ](https://ompl.kavrakilab.org/ReedsSheppStateSpace_8cpp_source.html) Library of OMPL.
* [Julia Version: ](https://github.com/AtsushiSakai/HybridAStarTrailer/blob/master/src/rs_path.jl) From AtsushiSakai's work.