GitXplorerGitXplorer
p

a_star_speed_planning

public
17 stars
11 forks
0 issues

Commits

List of commits on branch master.
Unverified
0418c0f35641490b048fbec1d16031be3cb56153

update

ppurewater0901 committed 4 years ago
Unverified
8b1121dfc7d6f157a9a146cd956c3d0cdb232fd4

update

ppurewater0901 committed 4 years ago
Unverified
b991931d6b0c41ae594ad0e3bb326d1fd7b7b0a8

update Readme

ppurewater0901 committed 4 years ago
Unverified
9d13f1150e8939f3cc03b564f1a012d586b4a123

change file structure

ppurewater0901 committed 4 years ago
Verified
36e9a2f0bda292baee5404e20eadad07b120b8e1

Add files via upload

ppurewater0901 committed 4 years ago
Verified
81a9ebf642d5b347bf78f3e7f77bfbe425f02cdb

Add files via upload

ppurewater0901 committed 4 years ago

README

The README file for this repository.

A star Speed Planning

1. Description

This repository is about speed planning of an autonomous driving car. We use A* and Hybrid A* to complete our task. Moreover, we compared the results of two algorithms.

2. Requirement

  • python3.7
  • numpy
  • pandas
  • matplotlib

3. Usage

  • run algorithm && generate csv file

git clone https://github.com/purewater0901/a_star_speed_planning.git
cd a_star_speed_planning
mkdir build && cd build
cmake ..
make
./main
  • visualize result

python script/visualize.py

4. Result

  • Black: Obstacle Occupied Area
  • Red: Optimal Trajectory generated by A*
  • Blue: Optimal Trajectory generated by Hybrid A*

result

5. Reference

  • Paper

Hierarchical Trajectory Planning

  • Code

A Star