-
Notifications
You must be signed in to change notification settings - Fork 5
Description
I am trying to use the pc_scene_completion framework to complete shapes of a static (for now) point cloud. The point cloud is generated from a single RGB-D image saved as .pcd and then posted as /camera_cloud topic using ros. I am starting a pc_scene_completion_client node like this in python:
result = pc_scene_completion_client.complete_scene('/camera_cloud')
After that I start the pc_completion pipeline:
roslaunch pc_pipeline_launch pc_pipeline.launch
In rviz I can see my cloud and the /filtered_pc part but the client never gets any results (hangs)
rostopic list gives:
/SceneCompletion/cancel /SceneCompletion/feedback /SceneCompletion/goal /SceneCompletion/result /SceneCompletion/status /camera_cloud /camera_info /clicked_point /depth/object_completion/cancel /depth/object_completion/feedback /depth/object_completion/goal /depth/object_completion/result /depth/object_completion/status /depth_tactile/object_completion/cancel /depth_tactile/object_completion/feedback /depth_tactile/object_completion/goal /depth_tactile/object_completion/result /depth_tactile/object_completion/status /filtered_pc /initialpose /move_base_simple/goal /myshape /parameter_descriptions /parameter_updates /partial_object_completion/cancel /partial_object_completion/feedback /partial_object_completion/goal /partial_object_completion/result /partial_object_completion/status /rosout /rosout_agg /tf /tf_static
and
rosnode list gives:
/my_pcl_tutorial /pc_cnn_mesh /pc_filter/pc_filter /pc_scene_completion /pc_scene_completion_client /rosout /rviz_1513189826137779454
Also tried using /filtered_pc as input to complete_scene with no more success.