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

The ~ character in the documentation on the wiki isn't part of the param name. It just indicates that the parameter is private. In roslaunch, you specify a private parameter by putting the <param> tag inside of the <node>

The ~ character in the documentation on the wiki isn't part of the param parameter name. It just indicates that the parameter is private. In roslaunch, you specify a private parameter by putting the <param> tag inside of the <node> tag.

Your launch should look like this:

<launch>
     .
     .
     .
  <node name="image_proc" pkg="image_proc" type="image_proc" ns="camera_pi"  output="screen" >
     <param name="queue_size" value="1" />
  </node>
</launch>

For more information on parameter namespaces, see the wiki page on Names.

The ~ character in the parameter in the documentation on the wiki isn't part of the parameter name. It just indicates that the parameter is private. In roslaunch, you specify a private parameter by putting the <param> tag inside of the <node> tag.

Your launch should look like this:

<launch>
     .
     .
     .
  <node name="image_proc" pkg="image_proc" type="image_proc" ns="camera_pi"  output="screen" >
     <param name="queue_size" value="1" />
  </node>
</launch>

For more information on parameter namespaces, see the wiki page on Names.