Skip to content

Commit

Permalink
feat(perception_online_evaluator): add use_perception_online_evaluato…
Browse files Browse the repository at this point in the history
…r option and disable it by default (#6861)

Signed-off-by: kosuke55 <[email protected]>
  • Loading branch information
kosuke55 authored Apr 22, 2024
1 parent c09bc59 commit 00db87d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion launch/tier4_perception_launch/launch/perception.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
<arg name="pointcloud_container_name" default="pointcloud_container"/>
<arg name="objects_filter_method" default="lanelet_filter"/>
<arg name="objects_validation_method" default="obstacle_pointcloud"/>
<arg name="use_perception_online_evaluator" default="false" description="use perception online evaluator"/>

<!-- Traffic light recognition parameters -->
<arg name="use_traffic_light_recognition" default="true"/>
Expand Down Expand Up @@ -249,7 +250,7 @@
</group>

<!-- perception evaluator -->
<group>
<group if="$(var use_perception_online_evaluator)">
<include file="$(find-pkg-share perception_online_evaluator)/launch/perception_online_evaluator.launch.xml"/>
</group>
</launch>
3 changes: 2 additions & 1 deletion launch/tier4_simulator_launch/launch/simulator.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<arg name="fusion_only" default="true" description="enable only camera and V2X fusion when enabling traffic light"/>
<arg name="perception/use_base_link_z" default="true" description="dummy perception uses base_link z axis coordinate if it is true"/>
<arg name="sensing/visible_range" default="300.0" description="visible range when using dummy perception"/>
<arg name="use_perception_online_evaluator" default="false" description="use perception online evaluator"/>

<arg name="vehicle_model" description="vehicle model name"/>
<arg name="initial_engage_state" default="true" description="/vehicle/engage state after starting Autoware"/>
Expand Down Expand Up @@ -89,7 +90,7 @@
</group>

<!-- perception evaluator -->
<group>
<group if="$(var use_perception_online_evaluator)">
<include file="$(find-pkg-share perception_online_evaluator)/launch/perception_online_evaluator.launch.xml"/>
</group>

Expand Down

0 comments on commit 00db87d

Please sign in to comment.