Skip to content

Commit 303e1d4

Browse files
Merge pull request #416 from tier4/sync-awf-latest
chore: sync awf-latest
2 parents 303c671 + b0581a9 commit 303e1d4

File tree

4 files changed

+91
-2
lines changed

4 files changed

+91
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
/**:
2+
ros__parameters:
3+
input_channels:
4+
detected_objects:
5+
topic: "/perception/object_recognition/detection/objects"
6+
can_spawn_new_tracker: true
7+
optional:
8+
name: "detected_objects"
9+
short_name: "all"
10+
# LIDAR - rule-based
11+
lidar_clustering:
12+
topic: "/perception/object_recognition/detection/clustering/objects"
13+
can_spawn_new_tracker: true
14+
optional:
15+
name: "clustering"
16+
short_name: "Lcl"
17+
# LIDAR - DNN
18+
lidar_centerpoint:
19+
topic: "/perception/object_recognition/detection/centerpoint/objects"
20+
can_spawn_new_tracker: true
21+
optional:
22+
name: "centerpoint"
23+
short_name: "Lcp"
24+
lidar_centerpoint_validated:
25+
topic: "/perception/object_recognition/detection/centerpoint/validation/objects"
26+
can_spawn_new_tracker: true
27+
optional:
28+
name: "centerpoint"
29+
short_name: "Lcp"
30+
lidar_apollo:
31+
topic: "/perception/object_recognition/detection/apollo/objects"
32+
can_spawn_new_tracker: true
33+
optional:
34+
name: "apollo"
35+
short_name: "Lap"
36+
lidar_apollo_validated:
37+
topic: "/perception/object_recognition/detection/apollo/validation/objects"
38+
can_spawn_new_tracker: true
39+
optional:
40+
name: "apollo"
41+
short_name: "Lap"
42+
# LIDAR-CAMERA - DNN
43+
# cspell:ignore lidar_pointpainitng pointpainting
44+
lidar_pointpainitng:
45+
topic: "/perception/object_recognition/detection/pointpainting/objects"
46+
can_spawn_new_tracker: true
47+
optional:
48+
name: "pointpainting"
49+
short_name: "Lpp"
50+
lidar_pointpainting_validated:
51+
topic: "/perception/object_recognition/detection/pointpainting/validation/objects"
52+
can_spawn_new_tracker: true
53+
optional:
54+
name: "pointpainting"
55+
short_name: "Lpp"
56+
# CAMERA-LIDAR
57+
camera_lidar_fusion:
58+
topic: "/perception/object_recognition/detection/clustering/camera_lidar_fusion/objects"
59+
can_spawn_new_tracker: true
60+
optional:
61+
name: "camera_lidar_fusion"
62+
short_name: "CLf"
63+
# CAMERA-LIDAR+TRACKER
64+
detection_by_tracker:
65+
topic: "/perception/object_recognition/detection/detection_by_tracker/objects"
66+
can_spawn_new_tracker: false
67+
optional:
68+
name: "detection_by_tracker"
69+
short_name: "dbT"
70+
# RADAR
71+
radar:
72+
topic: "/sensing/radar/detected_objects"
73+
can_spawn_new_tracker: true
74+
optional:
75+
name: "radar"
76+
short_name: "R"
77+
radar_far:
78+
topic: "/perception/object_recognition/detection/radar/far_objects"
79+
can_spawn_new_tracker: true
80+
optional:
81+
name: "radar_far"
82+
short_name: "Rf"

autoware_launch/config/perception/object_recognition/tracking/multi_object_tracker/multi_object_tracker_node.param.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@
1313
publish_rate: 10.0
1414
world_frame_id: map
1515
enable_delay_compensation: true
16-
pass_through_unknown_objects: false
17-
publish_untracked_objects: false
1816

1917
# debug parameters
2018
publish_processing_time: true
2119
publish_tentative_objects: false
20+
publish_debug_markers: true
2221
diagnostics_warn_delay: 0.5 # [sec]
2322
diagnostics_error_delay: 1.0 # [sec]

autoware_launch/launch/components/tier4_perception_component.launch.xml

+4
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@
116116
name="object_recognition_tracking_multi_object_tracker_data_association_matrix_param_path"
117117
value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/tracking/multi_object_tracker/data_association_matrix.param.yaml"
118118
/>
119+
<arg
120+
name="object_recognition_tracking_multi_object_tracker_input_channels_param_path"
121+
value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/tracking/multi_object_tracker/input_channels.param.yaml"
122+
/>
119123
<arg
120124
name="object_recognition_tracking_multi_object_tracker_node_param_path"
121125
value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/tracking/multi_object_tracker/multi_object_tracker_node.param.yaml"

autoware_launch/launch/components/tier4_simulator_component.launch.xml

+4
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@
4141
name="object_recognition_tracking_multi_object_tracker_data_association_matrix_param_path"
4242
value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/tracking/multi_object_tracker/data_association_matrix.param.yaml"
4343
/>
44+
<arg
45+
name="object_recognition_tracking_multi_object_tracker_input_channels_param_path"
46+
value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/tracking/multi_object_tracker/input_channels.param.yaml"
47+
/>
4448
<arg
4549
name="object_recognition_tracking_multi_object_tracker_node_param_path"
4650
value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/tracking/multi_object_tracker/multi_object_tracker_node.param.yaml"

0 commit comments

Comments
 (0)