GitXplorerGitXplorer
o

HybridAStarTrailer

public
2 stars
103 forks
0 issues

Commits

List of commits on branch master.
Unverified
7674f291f01b1b794796c0fb5d116b0273104ab2

update README

AAtsushiSakai committed 7 years ago
Unverified
bc2d24b5b0035d9394cd315831215a0b9b2ad881

update README

AAtsushiSakai committed 7 years ago
Unverified
4a248fa6bb19c3d8b6118bd0fa6bd6d63379aa7a

code commit

AAtsushiSakai committed 7 years ago
Unverified
6082eff0a01eda8a7a6a3a9869e757140b8b5449

update README

AAtsushiSakai committed 7 years ago
Unverified
db8f0d22b0be1a2a11089a70241da55ae4dbb5df

add README

AAtsushiSakai committed 7 years ago
Unverified
9017e5e611d49a09b3f83d2df86ff99c1bc8c786

add test

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)