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

Revision history [back]

click to hide/show revision 1
initial version

Ah, found it. Not sure why the behavior changed recently, but the fix is to launch image_proc in the "/camera" name space, not in "camera". The modified .launch file is:

<launch>
  <node name="launch_prosilica_camera" pkg="prosilica_camera" type="prosilica_node" output="screen">
    <param name="~trigger_mode" type="str" value="streaming"/>
  </node>
  <node name="launch_image_proc" pkg="image_proc" type="image_proc" output="screen">
    <env name="ROS_NAMESPACE" value="/camera"/>
  </node>
</launch>

Thanks for the views!