From 7579c0d1d3b0b75492f9c6b02b75627785d201b7 Mon Sep 17 00:00:00 2001 From: Kyle Cesare Date: Wed, 7 Jun 2023 22:36:28 -0600 Subject: [PATCH] Add images to README. --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 07da444..74814f3 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,10 @@ Plan around a sphere obstacle in $\mathbb{R}^3$ using the RRT-Connect planner: https://github.com/kylc/planning-kit/blob/e83075cf0f9afa06b3d94a9de964c3397302c08e/demo/01_intro.py#L1-L33 +

+ +

+ ## Details ### State Space @@ -30,6 +34,10 @@ For example, to define a Euclidean space (which has equivalent behavior to the b https://github.com/kylc/planning-kit/blob/e83075cf0f9afa06b3d94a9de964c3397302c08e/demo/02_custom_space.py#L1-L26 +

+ +

+ ### Constraints Planning subject to manifold constraints is implemented via the unifying framework IMACS (implicit manifold configuration space) presented in [[KiMK19]](#KiMK19). Projection is used to adhere samples from an ambient space to the constrained manifold while preserving the planner properties of probabilistic completeness and asymptotic optimality. @@ -40,6 +48,10 @@ For example, we can define a constraint which confines the state space to the su https://github.com/kylc/planning-kit/blob/e83075cf0f9afa06b3d94a9de964c3397302c08e/demo/03_constraints.py#L1-L14 +

+ +

+ ### Planning | Planner | Category | Optimal | Reference |