Skip to content

Commit 2f9a088

Browse files
miurshpre-commit-ci[bot]
authored andcommitted
feat(tier4_perception_launch): add object filter params to tier4_perception_launch (tier4#1322)
* Add params to tier4_perception_launch Signed-off-by: Shunsuke Miura <shunsuke.miura@tier4.jp> * ci(pre-commit): autofix Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent b720db3 commit 2f9a088

File tree

4 files changed

+29
-0
lines changed

4 files changed

+29
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/**:
2+
ros__parameters:
3+
filter_target_label:
4+
UNKNOWN : true
5+
CAR : false
6+
TRUCK : false
7+
BUS : false
8+
TRAILER : false
9+
MOTORCYCLE : false
10+
BICYCLE : false
11+
PEDESTRIAN : false
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**:
2+
ros__parameters:
3+
filter_target_label:
4+
UNKNOWN : true
5+
CAR : false
6+
TRUCK : false
7+
BUS : false
8+
TRAILER : false
9+
MOTORCYCLE : false
10+
BICYCLE : false
11+
PEDESTRIAN : false
12+
13+
upper_bound_x: 100.0
14+
lower_bound_x: 0.0
15+
upper_bound_y: 10.0
16+
lower_bound_y: -10.0

launch/tier4_perception_launch/launch/object_recognition/detection/camera_lidar_fusion_based_detection.launch.xml

+1
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@
193193
<include file="$(find-pkg-share detected_object_validation)/launch/object_lanelet_filter.launch.xml">
194194
<arg name="input/object" value="objects_before_filter"/>
195195
<arg name="output/object" value="$(var output/objects)"/>
196+
<arg name="filtering_range_param" value="$(find-pkg-share tier4_perception_launch)/config/object_recognition/detection/object_lanelet_filter.param.yaml"/>
196197
</include>
197198
</group>
198199
</launch>

launch/tier4_perception_launch/launch/object_recognition/detection/lidar_based_detection.launch.xml

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@
111111
<include file="$(find-pkg-share detected_object_validation)/launch/object_lanelet_filter.launch.xml">
112112
<arg name="input/object" value="objects_before_filter"/>
113113
<arg name="output/object" value="$(var output/objects)"/>
114+
<arg name="filtering_range_param" value="$(find-pkg-share tier4_perception_launch)/config/object_recognition/detection/object_lanelet_filter.param.yaml"/>
114115
</include>
115116
</group>
116117
</launch>

0 commit comments

Comments
 (0)