camera_offset_calibration.launch 470 B

12345678910
  1. <launch>
  2. <!-- Start usb_cam separately. This launch file is subscriber-only. -->
  3. <arg name="config" default="$(find line_follower)/config/line_follow_debug.yaml"/>
  4. <arg name="image_topic" default="/usb_cam/image_raw"/>
  5. <node pkg="line_follower" type="camera_offset_calibrator.py" name="camera_offset_calibrator" output="screen">
  6. <rosparam command="load" file="$(arg config)"/>
  7. <param name="image_topic" value="$(arg image_topic)"/>
  8. </node>
  9. </launch>