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

feat(perception_online_evaluator): add use_perception_online_evaluator option and disable it by default (#6861) #1271

Merged
merged 1 commit into from
Apr 23, 2024
Merged
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 @@ -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
Loading