module_sam_raw.launch 1.7 KB

1234567891011121314151617181920212223
  1. <launch>
  2. <arg name="project" default="lvi_sam"/>
  3. <!-- Lidar odometry param -->
  4. <rosparam file="$(find lvi_sam)/config/params_lidar.yaml" command="load" />
  5. <!-- VINS config -->
  6. <param name="vins_config_file" type="string" value="$(find lvi_sam)/config/params_camera.yaml" />
  7. <!-- Lidar odometry -->
  8. <node pkg="$(arg project)" type="$(arg project)_imuPreintegration" name="$(arg project)_imuPreintegration" output="screen" respawn="true"/>
  9. <node pkg="$(arg project)" type="$(arg project)_imageProjection" name="$(arg project)_imageProjection" output="screen" respawn="true"/>
  10. <node pkg="$(arg project)" type="$(arg project)_featureExtraction" name="$(arg project)_featureExtraction" output="screen" respawn="true"/>
  11. <node pkg="$(arg project)" type="$(arg project)_mapOptmization" name="$(arg project)_mapOptmization" output="screen" respawn="true"/>
  12. <!-- Visual feature and odometry -->
  13. <node pkg="$(arg project)" type="$(arg project)_visual_feature" name="$(arg project)_visual_feature" output="screen" respawn="true"/>
  14. <node pkg="$(arg project)" type="$(arg project)_visual_odometry" name="$(arg project)_visual_odometry" output="screen" respawn="true"/>
  15. <node pkg="$(arg project)" type="$(arg project)_visual_loop" name="$(arg project)_visual_loop" output="screen" respawn="true"/>
  16. <!-- Image conversion -->
  17. <node pkg="image_transport" type="republish" name="$(arg project)_republish" args="compressed in:=/camera/image_raw raw out:=/camera/image_raw" output="screen" respawn="true"/>
  18. </launch>