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

ehuang's profile - activity

2015-04-24 20:32:59 -0500 received badge  Famous Question (source)
2013-10-22 00:28:16 -0500 received badge  Notable Question (source)
2013-10-09 08:48:17 -0500 received badge  Famous Question (source)
2013-09-03 20:24:43 -0500 received badge  Popular Question (source)
2013-09-03 09:53:28 -0500 received badge  Scholar (source)
2013-08-26 08:45:26 -0500 asked a question Display custom models with Interactive Markers

I am writing an RVIZ panel for performing user guided model registration in a point cloud scene.

For the purposes of performing user guided ICP, I would like to display a custom model in the centre of an interactive marker.

However, I'm unable to find documentation on how to do so. I've looked through interactive markers, but nothing suggests they support this functionality. What's the best way to achieve a custom model in an interactive marker?

2013-08-20 08:36:11 -0500 received badge  Notable Question (source)
2013-08-19 16:09:46 -0500 received badge  Popular Question (source)
2013-08-19 05:24:34 -0500 asked a question Will declaring a metapackage dependency pull all children packages.

I have meta package structured like so

catkin_ws/src/vision_common/

  vision_common/ (a subpackage in the package)

  vision_msgs/

  vision_3d/

I want to use the vision_msgs in another package. Is it sufficient to do <run_depend>vision_common</run_depend>and

generate_messages(
  DEPENDENCIES
  vision_msgs
)

In the other package? I'm running into trouble with the following error:

CMake Error at /home/vision/catkin_ws/build/planning_common/cmake/planning_common-genmsg.cmake:3 (message):
  Could not find messages which
  '/home/vision/catkin_ws/src/planning_common/srv/SimplePlanningSrv.srv'
  depends on.  Did you forget to specify generate_messages(DEPENDENCIES ...)?

  Cannot locate message [ParametricObjectMsg]: unknown package
  [vision_common] on search path [{{'household_objects_database_msgs':
  ['/opt/ros/groovy/share/household_objects_database_msgs/msg'],
  'shape_msgs': ['/opt/ros/groovy/share/shape_msgs/msg'], 'vision_msgs':
  ['/home/vision/catkin_ws/src/vision_common/vision_msgs/msg'],
  'std_msgs': ['/opt/ros/groovy/share/std_msgs/msg'], 'moveit_msgs':
  ['/opt/ros/groovy/share/moveit_msgs/msg'], 'trajectory_msgs':
  ['/opt/ros/groovy/share/trajectory_msgs/msg'], 'sensor_msgs':
  ['/opt/ros/groovy/share/sensor_msgs/msg'], 'object_recognition_msgs':
  ['/opt/ros/groovy/share/object_recognition_msgs/msg'], 'octomap_msgs':
  ['/opt/ros/groovy/share/octomap_msgs/msg'], 'manipulation_msgs':
  ['/opt/ros/groovy/share/manipulation_msgs/msg'], 'geometry_msgs':
  ['/opt/ros/groovy/share/geometry_msgs/msg'], 'actionlib_msgs':
  ['/opt/ros/groovy/share/actionlib_msgs/msg'], 'control_msgs':
  ['/opt/ros/groovy/share/control_msgs/msg'], 'diagnostic_msgs':
  ['/opt/ros/groovy/share/diagnostic_msgs/msg']}}]
Call Stack (most recent call first):
  /opt/ros/groovy/share/genmsg/cmake/genmsg-extras.cmake:280 (include)
  planning_common/CMakeLists.txt:28 (generate_messages)