GitXplorerGitXplorer
o

HybridAStarTrailer

public
2 stars
103 forks
0 issues

Commits

List of commits on branch master.
Unverified
a77cde799c13a348939485497f343a7bd58e2bcf

update README

AAtsushiSakai committed 7 years ago
Unverified
c041f57bcd56835e42c7e32300a994a2277e3980

update README

AAtsushiSakai committed 7 years ago
Unverified
76500d1c8e86a665c2bfa3dced90e6485b57ea29

update README

AAtsushiSakai committed 7 years ago
Unverified
465bb5f74722b624e4d2edea64ad81eccddb538f

update README

AAtsushiSakai committed 7 years ago
Unverified
2d5f50ced617dfc525b494120090764fa6e0d020

add animation

AAtsushiSakai committed 7 years ago
Unverified
48d03483f7755404cb10bec12e6ab1b665a36aab

add one gif

AAtsushiSakai committed 7 years ago

README

The README file for this repository.

HybridAStarTrailer

A path planning algorithm based on Hybrid A* for trailer truck.

Goal

I want to achieve this on autonomous vehicle (click the image to see movie).

IMAGE ALT TEXT HERE

Fedex truck amazing reverse parking - YouTube

Simulation Examples

2

2

2

2

2

2

2

Requirements

How to use

  1. Install the required libraries.

  2. Clone this repo.

  3. Run the script like: julia main.jl

  4. Add star to this repo if you like it 😃.

Algorithm

This algorithm is almost same as the original Hybrid A * algorithm.

I will explain the some diffent parts of it.

Vehicle Model

This is the vehicle model which is used in this code.

x and y are 2D positions.

θ0 and θ1 is the orientation of vehicle and trailer respectively.

Ref:

Hybrid A * for trailer

This algorithm has 3 novelies for traier parking.

  1. 4D (x,y,θ0,θ1) gridding of Hybrid A *.

  2. Adding the Jackknif cost: Σ|θ0 - θ1|.

  3. Two rectangle (truck and trailer) collision check.

License

MIT

Author

Atsushi Sakai (@Atsushi_twi)