update README

This commit is contained in:
Atsushi Sakai
2017-12-25 12:06:13 -08:00
parent 1ac6df9f8d
commit 2fe0c9eb79

View File

@@ -8,6 +8,7 @@ Python codes for robotics algorithm.
# Table of Contents
* [Requirements](#requirements)
* [How to use](#how-to-use)
* [Path Planning](#path-planning)
* [Dynamic Window Approach](#dynamic-window-approach)
* [Grid based search](#grid-based-search)
@@ -55,6 +56,17 @@ Python codes for robotics algorithm.
- [cvxpy](https://cvxgrp.github.io/cvxpy/index.html) (Only for mix integer optimization based model predictive planning and control)
# How to use
1. Install the required libraries.
2. Clone this repo.
3. Execute python script in each dir.
4. Add star to this repo if you like it :).
# Path Planning
Path planning algorithm.
@@ -144,6 +156,8 @@ Cyan crosses means searched points with Dijkstra method,
The red line is the final path of PRM.
Ref:
- [Probabilistic roadmap \- Wikipedia](https://en.wikipedia.org/wiki/Probabilistic_roadmap)
  
@@ -159,6 +173,8 @@ Cyan crosses means searched points with Dijkstra method,
The red line is the final path of Vornoi Road-Map.
Ref:
- [Robotic Motion Planning](https://www.cs.cmu.edu/~motionplanning/lecture/Chap5-RoadMap-Methods_howie.pdf)