Skip to content

Commit 740164d

Browse files
feat(autoware_motion_velocity_obstacle_slow_down_module): params for obstacle stop and slow down modules (#1330)
* fix Signed-off-by: Arjun Jagdish Ram <arjun.ram@tier4.jp> * style(pre-commit): autofix * fix Signed-off-by: Arjun Jagdish Ram <arjun.ram@tier4.jp> --------- Signed-off-by: Arjun Jagdish Ram <arjun.ram@tier4.jp> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent ea7b92d commit 740164d

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

Diff for: 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

Diff for: 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)