Skip to content

Commit 7792f69

Browse files
committed
fix: update params for point paintings
Signed-off-by: N-Eiki <eiki.nagata.2@tier4.jp>
1 parent f4bb251 commit 7792f69

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,32 @@
11
/**:
22
ros__parameters:
3+
trt_precision: fp16
34
encoder_onnx_path: "$(var model_path)/pts_voxel_encoder_$(var model_name).onnx"
45
encoder_engine_path: "$(var model_path)/pts_voxel_encoder_$(var model_name).engine"
56
head_onnx_path: "$(var model_path)/pts_backbone_neck_head_$(var model_name).onnx"
67
head_engine_path: "$(var model_path)/pts_backbone_neck_head_$(var model_name).engine"
7-
trt_precision: fp16
8+
9+
model_params:
10+
class_names: ["CAR", "TRUCK", "BUS", "BICYCLE", "PEDESTRIAN"]
11+
paint_class_names: ["CAR", "BICYCLE", "PEDESTRIAN"]
12+
point_feature_size: 7 # x, y, z, time-lag and car, pedestrian, bicycle
13+
max_voxel_size: 40000
14+
point_cloud_range: [-121.6, -76.8, -3.0, 121.6, 76.8, 5.0]
15+
voxel_size: [0.32, 0.32, 8.0]
16+
downsample_factor: 1
17+
encoder_in_feature_size: 12
18+
yaw_norm_thresholds: [0.3, 0.3, 0.3, 0.3, 0.0]
19+
has_twist: false
20+
densification_params:
21+
world_frame_id: "map"
22+
num_past_frames: 0
823
post_process_params:
924
# post-process params
1025
circle_nms_dist_threshold: 0.3
1126
iou_nms_target_class_names: ["CAR"]
1227
iou_nms_search_distance_2d: 10.0
1328
iou_nms_threshold: 0.1
14-
score_threshold: 0.45
15-
yaw_norm_thresholds: [0.3, 0.3, 0.3, 0.3, 0.0]
16-
densification_params:
17-
world_frame_id: "map"
18-
num_past_frames: 1
29+
score_threshold: 0.35
1930
omp_params:
2031
# omp params
2132
num_threads: 1

0 commit comments

Comments
 (0)