Skip to content

Commit

Permalink
feat: introduce base_link and add sensor_height parameter
Browse files Browse the repository at this point in the history
Signed-off-by: Manato HIRABAYASHI <[email protected]>
  • Loading branch information
manato committed Oct 12, 2023
1 parent 4806b8e commit d48c600
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
7 changes: 6 additions & 1 deletion edge_auto_launch/launch/perception_at128_sample.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@
<arg name="lidar_camera0_tf_file" default="$(find-pkg-share individual_params)/config/$(var vehicle_id)/at128_to_camera0.json"/>
<arg name="lidar_camera1_tf_file" default="$(find-pkg-share individual_params)/config/$(var vehicle_id)/at128_to_camera1.json"/>
<arg name="live_sensor" default="True"/>
<arg name="sensor_height" default="1.0"/>

<!-- vehicle_info -->
<include file="$(find-pkg-share vehicle_info_util)/launch/vehicle_info.launch.py">
<arg name="vehicle_info_param_file" value="$(find-pkg-share individual_params)/config/$(var vehicle_id)/vehicle_info.param.yaml"/>
</include>

<!-- base_link generation -->
<node pkg="tf2_ros" exec="static_transform_publisher" name="base_link_broadcaster" output="screen" args="--x 0.0 --y 0.0 --z $(var sensor_height) --qx 0.0 --qy 0.0 --qz 0.0 --qw 1.0 --frame-id base_link --child-frame-id lidar" />

<!-- calibration -->
<include file="$(find-pkg-share edge_auto_launch)/launch/component/lidar_camera_tf_publisher.launch.py">
<arg name="tf_file_path" value="$(var lidar_camera0_tf_file)"/>
Expand All @@ -37,7 +41,8 @@
<include file="$(find-pkg-share edge_auto_launch)/launch/component/crop_box_filter.launch.xml">
<arg name="input/pointcloud" value="/sensing/lidar/at128/pointcloud_raw"/>
<arg name="output/pointcloud" value="cropped/pointcloud"/>
<arg name="max_z" value="1.2"/>
<arg name="frame_id" value="base_link"/>
<arg name="max_z" value="2.0"/>
</include>
<include file="$(find-pkg-share edge_auto_launch)/launch/component/voxel_downsample_filter.launch.xml">
<arg name="input/pointcloud" value="cropped/pointcloud"/>
Expand Down
8 changes: 5 additions & 3 deletions edge_auto_launch/launch/perception_xt32_sample.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,16 @@
<arg name="lidar_camera0_tf_file" default="$(find-pkg-share individual_params)/config/$(var vehicle_id)/xt32_to_camera0.json"/>
<arg name="lidar_camera1_tf_file" default="$(find-pkg-share individual_params)/config/$(var vehicle_id)/xt32_to_camera1.json"/>
<arg name="live_sensor" default="True"/>
<arg name="sensor_height" default="1.0"/>

<!-- vehicle_info -->
<include file="$(find-pkg-share vehicle_info_util)/launch/vehicle_info.launch.py">
<arg name="vehicle_info_param_file" value="$(find-pkg-share individual_params)/config/$(var vehicle_id)/vehicle_info.param.yaml"/>
</include>

<!-- base_link generation -->
<node pkg="tf2_ros" exec="static_transform_publisher" name="base_link_broadcaster" output="screen" args="--x 0.0 --y 0.0 --z $(var sensor_height) --qx 0.0 --qy 0.0 --qz 0.0 --qw 1.0 --frame-id base_link --child-frame-id lidar" />

<!-- calibration -->
<include file="$(find-pkg-share edge_auto_launch)/launch/component/lidar_camera_tf_publisher.launch.py">
<arg name="tf_file_path" value="$(var lidar_camera0_tf_file)"/>
Expand All @@ -35,7 +39,7 @@
<arg name="input/pointcloud" value="/sensing/lidar/xt32/pointcloud_raw"/>
<arg name="output/pointcloud" value="cropped/pointcloud"/>
<arg name="frame_id" value="base_link"/>
<arg name="max_z" value="1.2"/>
<arg name="max_z" value="2.0"/>
</include>
<push-ros-namespace namespace="obstacle_segmentation"/>
<include file="$(find-pkg-share edge_auto_launch)/launch/component/scan_ground_filter.launch.xml">
Expand Down Expand Up @@ -87,8 +91,6 @@
</group>
</group>

<node pkg="tf2_ros" exec="static_transform_publisher" name="base_link_broadcaster" output="screen" args="--x 0.0 --y 0.0 --z 1.0 --qx 0.0 --qy 0.0 --qz 0.0 --qw 1.0 --frame-id base_link --child-frame-id lidar" />

<!-- visualization -->
<node pkg="rviz2" exec="rviz2" name="rviz2" output="screen" args="-d $(find-pkg-share edge_auto_launch)/config/visualization/perception_xt32_sample.rviz"/>
<node pkg="rqt_gui" exec="rqt_gui" name="rqt_gui" output="screen" args="--perspective-file $(find-pkg-share edge_auto_launch)/config/visualization/perception_xt32_sample.perspective"/>
Expand Down

0 comments on commit d48c600

Please sign in to comment.