This repository was archived by the owner on Nov 13, 2017. It is now read-only.
OcTree bounding box pruning - #599
Open
TheBrewCrew wants to merge 4 commits into
Open
Conversation
TheBrewCrew
force-pushed
the
cbrew_tree_pruning
branch
from
August 13, 2015 23:09
3796a55 to
3b91838
Compare
TheBrewCrew
force-pushed
the
cbrew_tree_pruning
branch
from
August 13, 2015 23:47
3b91838 to
389613b
Compare
TheBrewCrew
force-pushed
the
cbrew_tree_pruning
branch
from
August 14, 2015 19:00
389613b to
a8f7265
Compare
Member
|
I wish I knew more about this part of MoveIt! to review |
otamachan
pushed a commit
to otamachan/moveit_ros
that referenced
this pull request
Oct 22, 2017
* Use planGraspsAndPick with empty string Make it possible to use planGraspsAndPick even though the user did not provide any object. Now, if planGraspsAndPick is called with an empty string then planGraspsAndPick is called again with an empty moveit_msgs::CollisionObject. This change causes trouble in the executeAttachObject function, because there is no object to be attached. The function returns false and the pick is being abborted after the grasp. Thus we just return true in that function when the id of the object is an empty string. * Empty string default value for planGraspsAndPick
5 tasks
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
This adds an optional pruning size and height to the Octomap in MoveIt perception. This pull request depends on pull request #593. This feature is enabled if the octomap_size_limit param is set. octomap_height_limit can be set to specify a height limit on the Octomap. As the robot moves, the bounding box center will be set to the root link transform and then the Octomap will be pruned to fit inside the bounding box, marking data outside the bounding box unknown and freeing up memory. This will keep the Octomap to a reasonable size as the robot moves so that the Octomap can be passed across the network faster.