Skip to content

Commit

Permalink
feat: add launch file for image transport decompressor
Browse files Browse the repository at this point in the history
  • Loading branch information
1222-takeshi committed Nov 30, 2021
1 parent 127cc61 commit 61c7ea6
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<launch>
<arg name="input_topic_name" default="/input/compressed_image" />
<arg name="output_topic_name" default="/output/raw_image" />

<node pkg="image_transport_decompressor" exec="image_transport_decompressor_node" name="image_transport_decompressor">
<remap from="input" to="$(var input_topic_name)" />
<remap from="output" to="$(var output_topic_name)" />
</node>
</launch>

0 comments on commit 61c7ea6

Please sign in to comment.