-
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
Add SaveGeometryToFile
and LoadGeometryFromFile
services
#2973
Add SaveGeometryToFile
and LoadGeometryFromFile
services
#2973
Conversation
CI is failing because moveit/moveit_msgs#181 is not merged. |
moveit_ros/move_group/src/default_capabilities/load_geometry_from_file_service_capability.h
Outdated
Show resolved
Hide resolved
moveit_ros/move_group/src/default_capabilities/load_geometry_from_file_service_capability.h
Outdated
Show resolved
Hide resolved
moveit_ros/move_group/default_capabilities_plugin_description.xml
Outdated
Show resolved
Hide resolved
moveit_ros/move_group/default_capabilities_plugin_description.xml
Outdated
Show resolved
Hide resolved
moveit_ros/move_group/src/default_capabilities/load_geometry_from_file_service_capability.cpp
Outdated
Show resolved
Hide resolved
moveit_ros/move_group/src/default_capabilities/save_geometry_to_file_service_capability.cpp
Outdated
Show resolved
Hide resolved
moveit_ros/move_group/src/default_capabilities/save_geometry_to_file_service_capability.cpp
Outdated
Show resolved
Hide resolved
moveit_ros/move_group/src/default_capabilities/save_geometry_to_file_service_capability.cpp
Show resolved
Hide resolved
return; | ||
} | ||
planning_scene_monitor::LockedPlanningSceneRO locked_ps(context_->planning_scene_monitor_); | ||
locked_ps->saveGeometryToStream(file); |
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.
Dump question: Have you checked that these file operation don't throw? (This is just a nit question and not supposed to block the PR)
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.
I have not, I can look into it more.
Description
This PR adds services which can be used to save/load CollisionObjects to/from files. This depends on moveit/moveit_msgs#181.
Checklist