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 #14

Open
wants to merge 1 commit into
base: refactor/autoware-prefix
Choose a base branch
from
Open
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 @@ -4,9 +4,9 @@
<!-- image topic name to be published -->
<arg name="output/raw_image" default="image_raw" />

<!-- container naem that this ROS node to be loaded -->

Check warning on line 7 in edge_auto_jetson_launch/launch/image_transport_decompressor.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (naem)
<arg name="container_name" default="" />
<!-- flag to use ROS2 intra process -->

Check warning on line 9 in edge_auto_jetson_launch/launch/image_transport_decompressor.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Forbidden word (ROS2)
<arg name="use_intra_process" default="True" />


Expand All @@ -14,7 +14,7 @@
<!-- If container name is not specified,
execute function as an individual node -->
<group if="$(var empty_container_is_specified)">
<node pkg="image_transport_decompressor" exec="image_transport_decompressor_node" name="image_transport_decompressor">
<node pkg="autoware_image_transport_decompressor" exec="image_transport_decompressor_node" name="image_transport_decompressor">
<remap from="~/input/compressed_image" to="$(var input/compressed_image)" />
<remap from="~/output/raw_image" to="$(var output/raw_image)" />
</node>
Expand All @@ -24,7 +24,7 @@
execute function as a composable node and load it into the container -->
<group unless="$(var empty_container_is_specified)">
<load_composable_node target="$(var container_name)">
<composable_node pkg="image_transport_decompressor" plugin="image_preprocessor::ImageTransportDecompressor" name="image_transport_decompressor">
<composable_node pkg="autoware_image_transport_decompressor" plugin="autoware::image_preprocessor::ImageTransportDecompressor" name="image_transport_decompressor">
<remap from="~/input/compressed_image" to="$(var input/compressed_image)" />
<remap from="~/output/raw_image" to="$(var output/raw_image)" />
<extra_arg name="use_intra_process_comms" value="$(var use_intra_process)" />
Expand Down
3 changes: 1 addition & 2 deletions edge_auto_jetson_launch/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
<exec_depend>tensorrt_yolox</exec_depend>
<exec_depend>bytetrack</exec_depend>
<exec_depend>intrinsic_camera_calibrator</exec_depend>
<exec_depend>image_transport_decompressor</exec_depend>

<exec_depend>autoware_image_transport_decompressor</exec_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>ament_lint_common</test_depend>

Expand Down
Loading