mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 08:18:03 -05:00
add README
This commit is contained in:
@@ -329,8 +329,8 @@ class BITStar(object):
|
||||
def connect(self, start, end):
|
||||
# A function which attempts to extend from a start coordinates
|
||||
# to goal coordinates
|
||||
steps = self.computeDistanceCost(self.tree.realWorldToNodeId(
|
||||
start), self.tree.realWorldToNodeId(end)) * 10
|
||||
steps = int(self.computeDistanceCost(self.tree.realWorldToNodeId(
|
||||
start), self.tree.realWorldToNodeId(end)) * 10)
|
||||
x = np.linspace(start[0], end[0], num=steps)
|
||||
y = np.linspace(start[1], end[1], num=steps)
|
||||
for i in range(len(x)):
|
||||
|
||||
12
README.md
12
README.md
@@ -5,6 +5,7 @@
|
||||
|
||||
Python codes for robotics algorithm.
|
||||
|
||||
|
||||
# Table of Contents
|
||||
* [What is this?](#what-is-this)
|
||||
* [Requirements](#requirements)
|
||||
@@ -47,6 +48,7 @@ Python codes for robotics algorithm.
|
||||
* [RRT* with dubins path](#rrt-with-dubins-path-1)
|
||||
* [RRT* with reeds-sheep path](#rrt-with-reeds-sheep-path)
|
||||
* [Informed RRT*](#informed-rrt)
|
||||
* [Batch Informed RRT*](#batch-informed-rrt)
|
||||
* [Closed Loop RRT*](#closed-loop-rrt)
|
||||
* [LQR-RRT*](#lqr-rrt)
|
||||
* [Cubic spline planning](#cubic-spline-planning)
|
||||
@@ -474,6 +476,15 @@ Ref:
|
||||
|
||||
- [Informed RRT\*: Optimal Sampling-based Path Planning Focused via Direct Sampling of an Admissible Ellipsoidal Heuristic](https://arxiv.org/pdf/1404.2334.pdf)
|
||||
|
||||
### Batch Informed RRT\*
|
||||
|
||||
)
|
||||
|
||||
This is a path planning code with Batch Informed RRT\*.
|
||||
|
||||
Ref:
|
||||
|
||||
- [Batch Informed Trees \(BIT\*\): Sampling\-based Optimal Planning via the Heuristically Guided Search of Implicit Random Geometric Graphs](https://arxiv.org/abs/1405.5848)
|
||||
|
||||
### Closed Loop RRT\*
|
||||
|
||||
@@ -725,3 +736,4 @@ You can support financially this project via PayPal.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user