Skip to content

Commit 90c7baa

Browse files
fix
Signed-off-by: Arjun Jagdish Ram <arjun.ram@tier4.jp>
1 parent 9ac49e7 commit 90c7baa

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

autoware_launch/config/planning/scenario_planning/lane_driving/motion_planning/motion_velocity_planner/motion_velocity_planner.param.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
/**:
22
ros__parameters:
3+
common:
4+
enable_debug_info: false
5+
enable_calculation_time_info: false
6+
7+
stop_obstacle_type:
8+
pointcloud: true
9+
10+
enable_slow_down_planning: true
11+
12+
slow_down_obstacle_type:
13+
pointcloud: false
14+
315
smooth_velocity_before_planning: true # [-] if true, smooth the velocity profile of the input trajectory before planning
416

517
trajectory_polygon_collision_check:

autoware_launch/config/planning/scenario_planning/lane_driving/motion_planning/motion_velocity_planner/obstacle_slow_down.param.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,14 @@
4242
pedestrian: true
4343
pointcloud: false
4444

45+
pointcloud:
46+
pointcloud_voxel_grid_x: 0.05
47+
pointcloud_voxel_grid_y: 0.05
48+
pointcloud_voxel_grid_z: 100000.0
49+
pointcloud_cluster_tolerance: 1.0
50+
pointcloud_min_cluster_size: 1
51+
pointcloud_max_cluster_size: 100000
52+
4553
min_lat_margin: 0.0 # lateral margin between obstacle and trajectory band with ego's width to avoid the conflict with the obstacle_stop
4654
max_lat_margin: 1.1 # lateral margin between obstacle and trajectory band with ego's width
4755
lat_hysteresis_margin: 0.2

autoware_launch/config/planning/scenario_planning/lane_driving/motion_planning/motion_velocity_planner/obstacle_stop.param.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,14 @@
5454
bicycle: false
5555
pedestrian: false
5656

57+
pointcloud:
58+
pointcloud_voxel_grid_x: 0.05
59+
pointcloud_voxel_grid_y: 0.05
60+
pointcloud_voxel_grid_z: 100000.0
61+
pointcloud_cluster_tolerance: 1.0
62+
pointcloud_min_cluster_size: 1
63+
pointcloud_max_cluster_size: 100000
64+
5765
# hysteresis for velocity
5866
obstacle_velocity_threshold_to_stop : 3.0 # stop planning is executed to the obstacle whose velocity is less than this value [m/s]
5967
obstacle_velocity_threshold_from_stop : 3.5 # stop planning is executed to the obstacle whose velocity is less than this value [m/s]

0 commit comments

Comments
 (0)