Skip to content

Commit 6669fe6

Browse files
isoufmiursh
andauthored
fix(tensorrt_yolox): renamed input output topic names (autowarefoundation#6472)
* feat(obstacle_cruise_planner): add calculation of obstacle distance to ego Add the arc length from the ego to the obstacle stop point to the stop_reasons topic. Signed-off-by: Ioannis Souflas <isouflas@gmail.com> * fix(tensorrt_yolox): renamed input output topic names The input and output argument names of yolox.launch.xml do not match the input and output arguments names of multiple_yolox.launch.xml. Signed-off-by: Ioannis Souflas <isouflas@gmail.com> --------- Signed-off-by: Ioannis Souflas <isouflas@gmail.com> Co-authored-by: Shunsuke Miura <37187849+miursh@users.noreply.github.com>
1 parent 8eafac5 commit 6669fe6

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

perception/tensorrt_yolox/launch/multiple_yolox.launch.xml

+16-16
Original file line numberDiff line numberDiff line change
@@ -27,43 +27,43 @@
2727
<arg name="output_topic" default="rois"/>
2828

2929
<include if="$(eval &quot;'$(var image_number)'>='1'&quot;)" file="$(find-pkg-share tensorrt_yolox)/launch/yolox.launch.xml">
30-
<arg name="input_topic" value="$(var image_raw0)"/>
31-
<arg name="output_topic" value="rois0"/>
30+
<arg name="input/image" value="$(var image_raw0)"/>
31+
<arg name="output/objects" value="rois0"/>
3232
<arg name="gpu_id" value="$(var gpu_id_image_raw0)"/>
3333
</include>
3434
<include if="$(eval &quot;'$(var image_number)'>='2'&quot;)" file="$(find-pkg-share tensorrt_yolox)/launch/yolox.launch.xml">
35-
<arg name="input_topic" value="$(var image_raw1)"/>
36-
<arg name="output_topic" value="rois1"/>
35+
<arg name="input/image" value="$(var image_raw1)"/>
36+
<arg name="output/objects" value="rois1"/>
3737
<arg name="gpu_id" value="$(var gpu_id_image_raw1)"/>
3838
</include>
3939
<include if="$(eval &quot;'$(var image_number)'>='3'&quot;)" file="$(find-pkg-share tensorrt_yolox)/launch/yolox.launch.xml">
40-
<arg name="input_topic" value="$(var image_raw2)"/>
41-
<arg name="output_topic" value="rois2"/>
40+
<arg name="input/image" value="$(var image_raw2)"/>
41+
<arg name="output/objects" value="rois2"/>
4242
<arg name="gpu_id" value="$(var gpu_id_image_raw2)"/>
4343
</include>
4444
<include if="$(eval &quot;'$(var image_number)'>='4'&quot;)" file="$(find-pkg-share tensorrt_yolox)/launch/yolox.launch.xml">
45-
<arg name="input_topic" value="$(var image_raw3)"/>
46-
<arg name="output_topic" value="rois3"/>
45+
<arg name="input/image" value="$(var image_raw3)"/>
46+
<arg name="output/objects" value="rois3"/>
4747
<arg name="gpu_id" value="$(var gpu_id_image_raw3)"/>
4848
</include>
4949
<include if="$(eval &quot;'$(var image_number)'>='5'&quot;)" file="$(find-pkg-share tensorrt_yolox)/launch/yolox.launch.xml">
50-
<arg name="input_topic" value="$(var image_raw4)"/>
51-
<arg name="output_topic" value="rois4"/>
50+
<arg name="input/image" value="$(var image_raw4)"/>
51+
<arg name="output/objects" value="rois4"/>
5252
<arg name="gpu_id" value="$(var gpu_id_image_raw4)"/>
5353
</include>
5454
<include if="$(eval &quot;'$(var image_number)'>='6'&quot;)" file="$(find-pkg-share tensorrt_yolox)/launch/yolox.launch.xml">
55-
<arg name="input_topic" value="$(var image_raw5)"/>
56-
<arg name="output_topic" value="rois5"/>
55+
<arg name="input/image" value="$(var image_raw5)"/>
56+
<arg name="output/objects" value="rois5"/>
5757
<arg name="gpu_id" value="$(var gpu_id_image_raw5)"/>
5858
</include>
5959
<include if="$(eval &quot;'$(var image_number)'>='7'&quot;)" file="$(find-pkg-share tensorrt_yolox)/launch/yolox.launch.xml">
60-
<arg name="input_topic" value="$(var image_raw6)"/>
61-
<arg name="output_topic" value="rois6"/>
60+
<arg name="input/image" value="$(var image_raw6)"/>
61+
<arg name="output/objects" value="rois6"/>
6262
<arg name="gpu_id" value="$(var gpu_id_image_raw6)"/>
6363
</include>
6464
<include if="$(eval &quot;'$(var image_number)'>='8'&quot;)" file="$(find-pkg-share tensorrt_yolox)/launch/yolox.launch.xml">
65-
<arg name="input_topic" value="$(var image_raw7)"/>
66-
<arg name="output_topic" value="rois7"/>
65+
<arg name="input/image" value="$(var image_raw7)"/>
66+
<arg name="output/objects" value="rois7"/>
6767
<arg name="gpu_id" value="$(var gpu_id_image_raw7)"/>
6868
</include>
6969
</launch>

0 commit comments

Comments
 (0)