-
Notifications
You must be signed in to change notification settings - Fork 15
Junbin/planning dev #290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Junbin/planning dev #290
Conversation
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.
Pull Request for Exploration Planner
What does this pull request do?
Adds an exploration as an alternative of random walk planner
Two images added for visualization.
How did you implement it?
Migrated from subt with modification, integrated map processor (for voxel grid maintain and frontier extract) and path planner (for RRT) so that they now use a shared voxel grid for collision check. Implemented a RRT path shortening method (check image).
Testing
How do you run the tests?
In
global.launch.xml, comment out the random walk planning section, and add the following line:<include file="$(find-pkg-share exploration_planner)/launch/exploration_launch.xml" />Then click the Global Plan button after takeoff just like using the random walk planner.
The voxels from vdb_mapping doesn't differenciate free and unknown, so in order to extract frontier that requires such difference, the exploration planner maintains its own collision map. Therefore, you can also comment out the vdb_mapping module to save some computation.
In rviz, the path is visualized the same as global plan, while the maintained vdb (without vdb mapping) can be visualized in
<namespace>/vdb_viztopic.I didn't push such launch xml and rviz changes for not affecting other's usage.
What do the tests do?
What are the expected results of the tests?
Did you update the docs (and where)?
Added a line in mkdocs.yml, pointing to the modified readme file in exploration folder.