Add a bidirectional RRT and path smoothing for joint-space planning - #899
Open
iory wants to merge 1 commit into
Open
Add a bidirectional RRT and path smoothing for joint-space planning#899iory wants to merge 1 commit into
iory wants to merge 1 commit into
Conversation
A collision-aware planner needs a search that only asks "is this configuration valid", so it can be driven by whatever collision model the caller has. This is that search: bidirectional RRT-connect with goal and straight-line sampling biases, plus shortcutting and resampling to tidy what it finds. The path is checked at the given resolution and is only trustworthy to that spacing, which the docstring now states, since a violation narrower than one check can pass between two check points.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A joint-space search that only asks
is_valid(q), so it can be driven by whatever collision model the caller already has. Bidirectional RRT-connect with goal and straight-line sampling biases, plusshortcutandresampleto tidy the result.No dependencies beyond numpy, and nothing else in the tree imports it yet — this is the first layer of a collision-aware planner that will build on it.
The returned path is checked at the given
resolutionand is trustworthy only to that spacing; the docstring now says so, since a violation narrower than one check can pass between two check points.