Skip to content

Commit c15d55b

Browse files
Merge pull request #308 from tier4/sync-awf-latest
chore: sync awf-latest
2 parents 752cbfb + 6969c88 commit c15d55b

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

autoware_launch/config/perception/object_recognition/prediction/map_based_prediction.param.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@
1919
use_vehicle_acceleration: false # whether to consider current vehicle acceleration when predicting paths or not
2020
speed_limit_multiplier: 1.5 # When using vehicle acceleration. Set vehicle's maximum predicted speed as the legal speed limit in that lanelet times this value
2121
acceleration_exponential_half_life: 2.5 # [s] When using vehicle acceleration. The decaying acceleration model considers that the current vehicle acceleration will be halved after this many seconds
22-
use_crosswalk_signal: true
22+
crosswalk_with_signal:
23+
use_crosswalk_signal: true
24+
threshold_velocity_assumed_as_stopping: 0.25 # [m/s] velocity threshold for the module to judge whether the objects is stopped
25+
# If the pedestrian does not move for X seconds against green signal, the module judge that the pedestrian has no intention to walk.
26+
distance_set_for_no_intention_to_walk: [1.0, 5.0] # [m] ascending order, keys of map
27+
timeout_set_for_no_intention_to_walk: [1.0, 0.0] # [s] values of map
2328
# parameter for shoulder lane prediction
2429
prediction_time_horizon_rate_for_validate_shoulder_lane_length: 0.8
2530

autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/crosswalk.param.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,10 @@
5353
stop_object_velocity_threshold: 0.25 # [m/s] velocity threshold for the module to judge whether the objects is stopped (0.25 m/s = 0.9 kmph)
5454
min_object_velocity: 1.39 # [m/s] minimum object velocity (compare the estimated velocity by perception module with this parameter and adopt the larger one to calculate TTV. 1.39 m/s = 5.0 kmph)
5555
## param for yielding
56-
disable_stop_for_yield_cancel: true # for the crosswalks with traffic signal
5756
disable_yield_for_new_stopped_object: true # for the crosswalks with traffic signal
5857
# If the pedestrian does not move for X seconds after the ego has stopped in front the crosswalk, the module judge that the pedestrian has no intention to walk and allows the ego to proceed.
59-
distance_map_for_no_intention_to_walk: [1.0, 5.0] # [m] ascending order
60-
timeout_map_for_no_intention_to_walk: [1.0, 0.0] # [s]
58+
distance_set_for_no_intention_to_walk: [1.0, 5.0] # [m] ascending order
59+
timeout_set_for_no_intention_to_walk: [1.0, 0.0] # [s]
6160
timeout_ego_stop_for_yield: 1.0 # [s] If the ego maintains the stop for this amount of time, then the ego proceeds, assuming it has stopped long time enough.
6261

6362
# param for target object filtering

autoware_launch/launch/autoware.launch.xml

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<arg name="map_path" description="point cloud and lanelet2 map directory path"/>
55
<arg name="vehicle_model" default="sample_vehicle" description="vehicle model name"/>
66
<arg name="sensor_model" default="sample_sensor_kit" description="sensor model name"/>
7-
<arg name="use_pointcloud_container" default="true" description="launch pointcloud container"/>
87
<arg name="pointcloud_container_name" default="pointcloud_container"/>
98
<arg name="data_path" default="$(env HOME)/autoware_data" description="packages data and artifacts directory path"/>
109

0 commit comments

Comments
 (0)