Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(image_transport_decompressor): add autoware prefix #25

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<group>
<push-ros-namespace namespace="$(var lidar_frame)/$(var camera_frame)"/>
<!-- image_decompressor -->
<node pkg="image_transport_decompressor" exec="image_transport_decompressor_node" name="decompressor" output="screen">
<node pkg="autoware_image_transport_decompressor" exec="image_transport_decompressor_node" name="decompressor" output="screen">
<remap from="decompressor/input/compressed_image" to="$(var compressed_image_topic)"/>
<remap from="decompressor/output/raw_image" to="image_raw"/>
</node>
Expand All @@ -44,7 +44,7 @@
<arg name="pointcloud_topic" value="$(var pointcloud_topic)"/>
<arg name="image_topic" value="image_raw"/>
</include>
<!-- intaractive_calibrator -->

Check warning on line 47 in edge_auto_launch/launch/calibration_extrinsic_at128_sample.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (intaractive)

Check warning on line 47 in edge_auto_launch/launch/calibration_extrinsic_at128_sample.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (intaractive)
<node pkg="extrinsic_interactive_calibrator" exec="interactive_calibrator" name="interactive_calibrator" output="screen">
<remap from="pointcloud" to="$(var pointcloud_topic)"/>
<remap from="image" to="$(var compressed_image_topic)"/>
Expand All @@ -65,6 +65,6 @@
<node pkg="tf2_ros" exec="static_transform_publisher" name="estimated_base_link_broadcaster" output="screen" args="--x 0.0 --y 0.0 --z 0.0 --qx 0.0 --qy 0.0 --qz 0.0 --qw 1.0 --frame-id lidar --child-frame-id camera0/camera_link" />
<node pkg="tf2_ros" exec="static_transform_publisher" name="estimated_base_link_broadcaster" output="screen" args="--x 0.0 --y 0.0 --z 0.0 --qx 0.0 --qy 0.0 --qz 0.0 --qw 1.0 --frame-id lidar --child-frame-id camera1/camera_link" />

<!-- visuzalization -->

Check warning on line 68 in edge_auto_launch/launch/calibration_extrinsic_at128_sample.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (visuzalization)

Check warning on line 68 in edge_auto_launch/launch/calibration_extrinsic_at128_sample.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (visuzalization)
<node pkg="rviz2" exec="rviz2" name="rviz2" output="screen" args="-d $(var rviz_profile)"/>
</launch>
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<group>
<push-ros-namespace namespace="$(var lidar_frame)/$(var camera_frame)"/>
<!-- image_decompressor -->
<node pkg="image_transport_decompressor" exec="image_transport_decompressor_node" name="decompressor" output="screen">
<node pkg="autoware_image_transport_decompressor" exec="image_transport_decompressor_node" name="decompressor" output="screen">
<remap from="decompressor/input/compressed_image" to="$(var compressed_image_topic)"/>
<remap from="decompressor/output/raw_image" to="image_raw"/>
</node>
Expand All @@ -42,7 +42,7 @@
<arg name="pointcloud_topic" value="$(var pointcloud_topic)"/>
<arg name="image_topic" value="image_raw"/>
</include>
<!-- intaractive_calibrator -->

Check warning on line 45 in edge_auto_launch/launch/calibration_extrinsic_xt32_sample.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (intaractive)

Check warning on line 45 in edge_auto_launch/launch/calibration_extrinsic_xt32_sample.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (intaractive)
<node pkg="extrinsic_interactive_calibrator" exec="interactive_calibrator" name="interactive_calibrator" output="screen">
<remap from="pointcloud" to="$(var pointcloud_topic)"/>
<remap from="image" to="$(var compressed_image_topic)"/>
Expand All @@ -63,6 +63,6 @@
<node pkg="tf2_ros" exec="static_transform_publisher" name="estimated_base_link_broadcaster" output="screen" args="--x 0.0 --y 0.0 --z 0.0 --qx 0.0 --qy 0.0 --qz 0.0 --qw 1.0 --frame-id lidar --child-frame-id camera0/camera_link" />
<node pkg="tf2_ros" exec="static_transform_publisher" name="estimated_base_link_broadcaster" output="screen" args="--x 0.0 --y 0.0 --z 0.0 --qx 0.0 --qy 0.0 --qz 0.0 --qw 1.0 --frame-id lidar --child-frame-id camera1/camera_link" />

<!-- visuzalization -->

Check warning on line 66 in edge_auto_launch/launch/calibration_extrinsic_xt32_sample.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (visuzalization)

Check warning on line 66 in edge_auto_launch/launch/calibration_extrinsic_xt32_sample.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (visuzalization)
<node pkg="rviz2" exec="rviz2" name="rviz2" output="screen" args="-d $(var rviz_profile)"/>
</launch>
2 changes: 1 addition & 1 deletion edge_auto_launch/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<exec_depend>rviz2</exec_depend>
<exec_depend>shape_estimation</exec_depend>
<exec_depend>vehicle_info_util</exec_depend>
<exec_depend>image_transport_decompressor</exec_depend>
<exec_depend>autoware_image_transport_decompressor</exec_depend>
<exec_depend>individual_params</exec_depend>

<test_depend>ament_lint_auto</test_depend>
Expand Down
Loading