Skip to content

Commit 6d4af73

Browse files
Merge pull request #240 from tier4/sync-awf-upstream
chore: sync awf/autoware_launch
2 parents ceb8584 + da09163 commit 6d4af73

File tree

2 files changed

+54
-5
lines changed

2 files changed

+54
-5
lines changed

autoware_launch/config/localization/ndt_scan_matcher.param.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@
3737
# The number of particles to estimate initial pose
3838
initial_estimate_particles_num: 100
3939

40+
# Tolerance of timestamp difference between current time and sensor pointcloud. [sec]
41+
lidar_topic_timeout_sec: 1.0
42+
4043
# Tolerance of timestamp difference between initial_pose and sensor pointcloud. [sec]
4144
initial_pose_timeout_sec: 1.0
4245

Lines changed: 51 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,61 @@
11
/**:
22
ros__parameters:
3-
43
# obstacle check
5-
use_pointcloud: true # use pointcloud as obstacle check
6-
use_dynamic_object: true # use dynamic object as obstacle check
7-
surround_check_distance: 0.5 # if objects exist in this distance, transit to "exist-surrounding-obstacle" status [m]
8-
surround_check_recover_distance: 0.8 # if no object exists in this distance, transit to "non-surrounding-obstacle" status [m]
4+
# surround_check_*_distance: if objects exist in this distance, transit to "exist-surrounding-obstacle" status [m]
5+
# surround_check_hysteresis_distance: if no object exists in this hysteresis distance added to the above distance, transit to "non-surrounding-obstacle" status [m]
6+
pointcloud:
7+
enable_check: false
8+
surround_check_front_distance: 0.5
9+
surround_check_side_distance: 0.5
10+
surround_check_back_distance: 0.5
11+
unknown:
12+
enable_check: true
13+
surround_check_front_distance: 0.5
14+
surround_check_side_distance: 0.5
15+
surround_check_back_distance: 0.5
16+
car:
17+
enable_check: true
18+
surround_check_front_distance: 0.5
19+
surround_check_side_distance: 0.0
20+
surround_check_back_distance: 0.5
21+
truck:
22+
enable_check: true
23+
surround_check_front_distance: 0.5
24+
surround_check_side_distance: 0.0
25+
surround_check_back_distance: 0.5
26+
bus:
27+
enable_check: true
28+
surround_check_front_distance: 0.5
29+
surround_check_side_distance: 0.0
30+
surround_check_back_distance: 0.5
31+
trailer:
32+
enable_check: true
33+
surround_check_front_distance: 0.5
34+
surround_check_side_distance: 0.0
35+
surround_check_back_distance: 0.5
36+
motorcycle:
37+
enable_check: true
38+
surround_check_front_distance: 0.5
39+
surround_check_side_distance: 0.0
40+
surround_check_back_distance: 0.5
41+
bicycle:
42+
enable_check: true
43+
surround_check_front_distance: 0.5
44+
surround_check_side_distance: 0.5
45+
surround_check_back_distance: 0.5
46+
pedestrian:
47+
enable_check: true
48+
surround_check_front_distance: 0.5
49+
surround_check_side_distance: 0.5
50+
surround_check_back_distance: 0.5
51+
52+
surround_check_hysteresis_distance: 0.3
53+
954
state_clear_time: 2.0
1055

1156
# ego stop state
1257
stop_state_ego_speed: 0.1 #[m/s]
1358

1459
# debug
1560
publish_debug_footprints: true # publish vehicle footprint & footprints with surround_check_distance and surround_check_recover_distance offsets
61+
debug_footprint_label: "car"

0 commit comments

Comments
 (0)