Skip to content

Commit

Permalink
feat: set traffic light parameter properly for autoware.launch and e2…
Browse files Browse the repository at this point in the history
…e.launch (autowarefoundation#569)

* feat: set traffic light parameter properly for autoware.launch and e2e.launch

Signed-off-by: tomoya.kimura <[email protected]>

* style(pre-commit): autofix

---------

Signed-off-by: tomoya.kimura <[email protected]>
Co-authored-by: tkimura4 <[email protected]>
Signed-off-by: tomoya.kimura <[email protected]>
  • Loading branch information
tkimura4 and tkimura4 committed Jul 28, 2023
1 parent 7018008 commit 6156b55
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion autoware_launch/launch/autoware.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@
<arg name="rviz_config" default="$(find-pkg-share autoware_launch)/rviz/autoware.rviz" description="rviz config"/>
<!-- Perception -->
<arg name="perception_mode" default="camera_lidar_fusion" description="select perception mode. camera_lidar_radar_fusion, camera_lidar_fusion, lidar_radar_fusion, lidar, radar"/>
<arg name="use_traffic_light_recognition" default="false"/>
<arg name="use_traffic_light_recognition" default="true"/>
<arg name="traffic_light_recognition/enable_fine_detection" default="true" description="enable traffic light fine detection"/>
<arg name="traffic_light_recognition/fusion_only" default="true" description="Whether to start only some of the signal recognition related nodes"/>
<!-- Planning -->
<arg name="use_experimental_lane_change_function" default="false"/>
<!-- Others -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<arg name="object_recognition_detection_lidar_model_param_path" value="$(find-pkg-share ml_model_provider)/config"/>
<arg name="centerpoint_model_name" value="centerpoint_xx1"/>
<arg name="centerpoint_model_path" value="$(find-pkg-share ml_model_provider)/data"/>
<arg name="traffic_light_recognition/fusion_only" value="true"/>
<arg name="traffic_light_recognition/fusion_only" value="$(var traffic_light_recognition/fusion_only)"/>
<arg name="remove_unknown" value="false"/>
<arg name="trust_distance" value="100.0"/>

Expand Down
1 change: 1 addition & 0 deletions autoware_launch/launch/e2e_simulator.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
<arg name="perception_mode" value="lidar"/>
<arg name="use_traffic_light_recognition" value="true"/>
<arg name="traffic_light_recognition/enable_fine_detection" value="false"/>
<arg name="traffic_light_recognition/fusion_only" value="false"/>
<!-- Tools -->
<arg name="rviz" value="$(var rviz)"/>
<arg name="rviz_config" value="$(var rviz_config)"/>
Expand Down

0 comments on commit 6156b55

Please sign in to comment.