Skip to content

Commit

Permalink
add args
Browse files Browse the repository at this point in the history
Signed-off-by: MasatoSaeki <[email protected]>
  • Loading branch information
MasatoSaeki committed Feb 10, 2025
1 parent 20b7738 commit 8fd580b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
<arg name="data_path" default="$(env HOME)/autoware_data" description="packages data and artifacts directory path"/>
<arg name="lidar_detection_model" default="centerpoint" description="If the model name is not declared, the default model in perception.launch.xml will be used"/>
<arg name="all_traffic_light_camera" default="[camera6, camera7]" description="choose camera which use for traffic light recognition"/>
<arg name="traffic_light_recognition/ml_detection_model_type" default="fine_detection_model" description="select ml model for TL detection: fine_detection_model or whole_image_detection_model"/>
<arg name="traffic_light_recognition/whole_image_detector_model_path" default="$(var data_path)"/>
<arg name="traffic_light_recognition/ml_detection_model_type" default="whole_image_detection_model" description="select ml model for TL detection: fine_detection_model or whole_image_detection_model"/>

<include file="$(find-pkg-share tier4_perception_launch)/launch/perception.launch.xml">
<!-- Options to Switch Launch Function/Module -->
Expand Down Expand Up @@ -52,7 +51,6 @@
<arg name="use_traffic_light_recognition" value="$(var use_traffic_light_recognition)"/>
<arg name="traffic_light_recognition/use_ml_detector" value="$(var traffic_light_recognition/use_ml_detector)"/>
<arg name="traffic_light_recognition/ml_detection_model_type" value="$(var traffic_light_recognition/ml_detection_model_type)"/>
<arg name="traffic_light_recognition/whole_image_detector_model_path" value="$(var traffic_light_recognition/whole_image_detector_model_path)"/>
<arg name="traffic_light_recognition/fusion_only" value="false"/>
<arg name="all_traffic_light_camera" value="$(var all_traffic_light_camera)"/>

Expand Down Expand Up @@ -192,6 +190,8 @@

<!-- traffic light recognition parameters -->
<arg name="traffic_light_arbiter_param_path" value="$(find-pkg-share autoware_launch)/config/perception/traffic_light_arbiter/traffic_light_arbiter.param.yaml"/>
<arg name="traffic_light_recognition/whole_image_detector_model_path" value="$(var data_path)/tensorrt_yolox"/>
<arg name="traffic_light_recognition/whole_image_detector_model_name" value="yolox_s_car_ped_tl_detector_960_960_batch_1.onnx"/>
<arg name="traffic_light_fine_detector_model_path" value="$(var data_path)/traffic_light_fine_detector"/>
<arg name="traffic_light_fine_detector_model_name" value="tlr_car_ped_yolox_s_batch_6"/>
<arg name="traffic_light_classifier_model_path" value="$(var data_path)/traffic_light_classifier"/>
Expand Down

0 comments on commit 8fd580b

Please sign in to comment.