ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
You are missing the group closing XML tag:
<launch> <arg name="camera" default="camera"/> <arg name="publish_tf" default="true"/> <group if="$(arg scan_processing)"> <node pkg="nodelet" type="nodelet" name="depthimage_to_laserscan" args="load depthimage_to_laserscan/DepthImageToLaserScanNodelet $(arg camera)/$(arg camera)_nodelet_manager"> <remap from="image" to="$(arg camera)/$(arg depth)/image_raw"/> <remap from="scan" to="$(arg scan_topic)"/> </group> </launch>
2 | No.2 Revision |
You are missing the group closing XML tag:
<launch>
<arg name="camera" default="camera"/>
<arg name="publish_tf" default="true"/>
<group if="$(arg scan_processing)">
<node pkg="nodelet" type="nodelet" name="depthimage_to_laserscan" args="load depthimage_to_laserscan/DepthImageToLaserScanNodelet $(arg camera)/$(arg camera)_nodelet_manager">