Skip to content

Commit 1c74fe4

Browse files
committed
fix: revert build_only option
Signed-off-by: kminoda <koji.minoda@tier4.jp>
1 parent d2747e2 commit 1c74fe4

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

perception/lidar_centerpoint/config/centerpoint.param.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
iou_nms_threshold: 0.1
1515
yaw_norm_thresholds: [0.3, 0.3, 0.3, 0.3, 0.0]
1616
score_threshold: 0.35
17-
build_only: false # shutdown node after TensorRT engine file is built
1817
has_twist: false
1918
trt_precision: fp16
2019
densification_num_past_frames: 1

perception/lidar_centerpoint/config/centerpoint_tiny.param.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
iou_nms_threshold: 0.1
1515
yaw_norm_thresholds: [0.3, 0.3, 0.3, 0.3, 0.0]
1616
score_threshold: 0.35
17-
build_only: false # shutdown node after TensorRT engine file is built
1817
has_twist: false
1918
trt_precision: fp16
2019
densification_num_past_frames: 1

perception/lidar_centerpoint/launch/lidar_centerpoint.launch.xml

+4
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,15 @@
77
<arg name="model_path" default="$(var data_path)/lidar_centerpoint"/>
88
<arg name="model_param_path" default="$(find-pkg-share lidar_centerpoint)/config/$(var model_name).param.yaml"/>
99
<arg name="class_remapper_param_path" default="$(find-pkg-share lidar_centerpoint)/config/detection_class_remapper.param.yaml"/>
10+
<arg name="build_only" default="false" description="shutdown node after TensorRT engine file is built"/>
1011

1112
<node pkg="lidar_centerpoint" exec="lidar_centerpoint_node" name="lidar_centerpoint" output="screen">
1213
<remap from="~/input/pointcloud" to="$(var input/pointcloud)"/>
1314
<remap from="~/output/objects" to="$(var output/objects)"/>
1415
<param from="$(var model_param_path)" allow_substs="true"/>
1516
<param from="$(var class_remapper_param_path)"/>
17+
18+
<!-- This parameter shall NOT be included in param file. See the PR from the git blame for details. -->
19+
<param name="build_only" value="$(var build_only)"/>
1620
</node>
1721
</launch>

0 commit comments

Comments
 (0)