forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: integration miss related to camera lidar fusion (autowarefoundat…
…ion#481) * fix integration miss Signed-off-by: Yukihiro Saito <[email protected]> * bug fix Signed-off-by: Yukihiro Saito <[email protected]> * add detection by tracker Signed-off-by: Yukihiro Saito <[email protected]> * Update launch/tier4_perception_launch/launch/object_recognition/detection/camera_lidar_fusion_based_detection.launch.xml
- Loading branch information
1 parent
5c9302d
commit 6e14982
Showing
6 changed files
with
43 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
sensing/image_transport_decompressor/launch/image_transport_decompressor.launch.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<launch> | ||
<arg name="input_topic_name" default="/input/compressed_image" /> | ||
<arg name="output_topic_name" default="/output/raw_image" /> | ||
<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_node"> | ||
<remap from="input" to="$(var input_topic_name)" /> | ||
<remap from="output" to="$(var output_topic_name)" /> | ||
</node> | ||
</launch> | ||
<node pkg="image_transport_decompressor" exec="image_transport_decompressor_node" name="$(anon image_transport_decompressor_node)"> | ||
<remap from="~/input/compressed_image" to="$(var input_topic_name)" /> | ||
<remap from="~/output/raw_image" to="$(var output_topic_name)" /> | ||
</node> | ||
</launch> |