ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Applying scene changes through service call does not block until changes are applied

asked 2020-05-19 05:29:37 -0500

Rufus gravatar image

updated 2020-05-20 01:18:56 -0500

This is a follow up to question: https://answers.ros.org/question/3525...

According to the tutorial. using the service call should block until the scene changes are applied. However, I found that after the /apply_planning_scene service returns, querying the planning scene with

planning_scene_monitor::LockedPlanningSceneRO scene(my_planning_scene_monitor);

does not give me a scene with the scene changes applied. A slight delay is required before the returned scene contains the changes.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2020-05-19 06:40:14 -0500

v4hn gravatar image

The service applies the scene to the PlanningScene instance maintained by the move_group node. There is no way for it to wait until your, or any other PlanningSceneMonitor, that might listen to the monitored planning scene topic processed the update. If you want a deterministic way to retrieve the updated scene, you have to request it via the get_planning_scene service from the move_group node.

edit flag offensive delete link more

Comments

Is this the correct way of retrieving the updated scene and converting it into a PlanningScenePtr to be used for planning?

moveit_msgs::GetPlanningScene get_planning_scene_call;
get_planning_scene_call.request.components.components = get_planning_scene_call.request.components.WORLD_OBJECT_GEOMETRY;
get_planning_scene_service_client.call(get_planning_scene_call);
planning_scene_monitor::LockedPlanningSceneRO scene_snapshot(monitor);
planning_scene::PlanningScenePtr current_scene(scene_snapshot->diff(get_planning_scene_call.response.scene));
Rufus gravatar image Rufus  ( 2020-05-19 21:50:59 -0500 )edit

The idea looks ok. When requesting WORLD_OBJECT_GEOMETRY, quite often you might want to have ROBOT_STATE_ATTACHED_OBJECTS and possibly ALLOWED_COLLISION_MATRIX. Looks like you know what you're doing though, so that's mostly a comment for other readers in the future. Also I'm not sure what happens when your local scene monitor receives the same updates again a moment later via the monitored topic. It should not be a problem though. Alternatively you can also wait for the change to appear in your local monitor on its own (will happen soon after your request), but depending on the configured rates your proposed approach will be much faster.

That being said, I'm personally not a fan of local PlanningSceneMonitors to begin with. Either you maintain your own scene entirely using a PlanningSceneMonitor and do not care about move_group at all, or you write MoveGroupCapabilitys and run your workload in ...(more)

v4hn gravatar image v4hn  ( 2020-05-20 02:58:02 -0500 )edit

@v4hn Yeah I'm starting to feel my approach of maintaining a local PlanningSceneMonitor is fundamentally flawed. Where can I find more information regarding writing MoveGroupCapability so I can use the existing move_group stuff? Is it the MoveGroup C++ Interface you're talking about?

Rufus gravatar image Rufus  ( 2020-05-20 03:06:07 -0500 )edit

Question Tools

2 followers

Stats

Asked: 2020-05-19 05:29:37 -0500

Seen: 192 times

Last updated: May 20 '20