2019-06-19 18:32:44 +02:00
|
|
|
<launch>
|
|
|
|
|
|
|
|
<arg name="robot" default="firefly_sbx"/>
|
|
|
|
<arg name="calibration_file"
|
|
|
|
default="$(find msckf_vio)/config/camchain-imucam-tum-scaled.yaml"/>
|
|
|
|
|
|
|
|
<!-- Image Processor Nodelet -->
|
|
|
|
<group ns="$(arg robot)">
|
|
|
|
<node pkg="nodelet" type="nodelet" name="image_processor"
|
|
|
|
args="standalone msckf_vio/ImageProcessorNodelet"
|
|
|
|
output="screen"
|
|
|
|
>
|
|
|
|
|
|
|
|
<rosparam command="load" file="$(arg calibration_file)"/>
|
|
|
|
<param name="grid_row" value="4"/>
|
|
|
|
<param name="grid_col" value="4"/>
|
2019-07-12 14:01:11 +02:00
|
|
|
<param name="grid_min_feature_num" value="3"/>
|
|
|
|
<param name="grid_max_feature_num" value="4"/>
|
2019-06-19 18:32:44 +02:00
|
|
|
<param name="pyramid_levels" value="3"/>
|
|
|
|
<param name="patch_size" value="15"/>
|
|
|
|
<param name="fast_threshold" value="10"/>
|
|
|
|
<param name="max_iteration" value="30"/>
|
|
|
|
<param name="track_precision" value="0.01"/>
|
|
|
|
<param name="ransac_threshold" value="3"/>
|
|
|
|
<param name="stereo_threshold" value="5"/>
|
|
|
|
|
2019-07-12 14:01:11 +02:00
|
|
|
<remap from="~imu" to="/imu02"/>
|
|
|
|
<remap from="~cam0_image" to="/cam0/image_raw2"/>
|
|
|
|
<remap from="~cam1_image" to="/cam1/image_raw2"/>
|
2019-06-19 18:32:44 +02:00
|
|
|
|
|
|
|
</node>
|
|
|
|
</group>
|
|
|
|
|
|
|
|
</launch>
|