-
Notifications
You must be signed in to change notification settings - Fork 557
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
[Python] Added Allowed Collision Matrix to planning scene and optional planning scene during planning #2387
[Python] Added Allowed Collision Matrix to planning scene and optional planning scene during planning #2387
Conversation
…l planning scene during planning
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2387 +/- ##
==========================================
- Coverage 50.44% 50.35% -0.08%
==========================================
Files 390 390
Lines 31954 31956 +2
==========================================
- Hits 16115 16089 -26
- Misses 15839 15867 +28
☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes need to be tested but on a high-level the changes look good to me. Once I have patched the issue with parameters in the tutorials I'll look to test and approve changes.
moveit_py/src/moveit/moveit_core/planning_scene/planning_scene.cpp
Outdated
Show resolved
Hide resolved
Added memory management handle
@peterdavidfagan I've added the return policy and the planning scene argument to line 81. |
Thanks @JensVanhooydonck, looks good to me. Will test on a robot later today. |
…planning scene during planning (backport #2387) (#2479) (cherry picked from commit 7b621d7) Co-authored-by: Jens Vanhooydonck <[email protected]> Co-authored-by: Sebastian Jahr <[email protected]>
Description
Added the ACM to the planning scene object. This allows setting the Allowed Collision Object Matrix.
Also added an optional planning_scene in the Plan function so another planning can be used then the current planning scene. (Can be used as a base for a basic python Task manager)
Checklist