|
6 | 6 | "pointpainting": {
|
7 | 7 | "type": "object",
|
8 | 8 | "properties": {
|
9 |
| - "model_params": { |
| 9 | + "build_only": { |
| 10 | + "type": "boolean", |
| 11 | + "description": "shutdown the node after TensorRT engine file is built.", |
| 12 | + "default": false |
| 13 | + }, |
| 14 | + "trt_precision": { |
| 15 | + "type": "string", |
| 16 | + "description": "TensorRT inference precision.", |
| 17 | + "default": "fp16", |
| 18 | + "enum": ["fp32", "fp16"] |
| 19 | + }, |
| 20 | + "post_process_params": { |
10 | 21 | "type": "object",
|
11 |
| - "description": "Parameters for model configuration.", |
12 | 22 | "properties": {
|
13 |
| - "class_names": { |
14 |
| - "type": "array", |
15 |
| - "description": "An array of class names will be predicted.", |
16 |
| - "default": ["CAR", "TRUCK", "BUS", "BICYCLE", "PEDESTRIAN"], |
17 |
| - "uniqueItems": true |
| 23 | + "score_threshold": { |
| 24 | + "type": "number", |
| 25 | + "description": "A threshold value of existence probability score, all of objects with score less than this threshold are ignored.", |
| 26 | + "default": 0.4, |
| 27 | + "minimum": 0.0, |
| 28 | + "maximum": 1.0 |
18 | 29 | },
|
19 |
| - "paint_class_names": { |
| 30 | + "yaw_norm_thresholds": { |
20 | 31 | "type": "array",
|
21 |
| - "description": "An array of class names will be painted by PointPainting", |
22 |
| - "default": ["CAR", "BICYCLE", "PEDESTRIAN"], |
23 |
| - "uniqueItems": true |
| 32 | + "description": "An array of distance threshold values of norm of yaw [rad].", |
| 33 | + "default": [0.3, 0.3, 0.3, 0.3, 0.0], |
| 34 | + "minimum": 0.0, |
| 35 | + "maximum": 1.0 |
24 | 36 | },
|
25 |
| - "point_feature_size": { |
26 |
| - "type": "integer", |
27 |
| - "description": "A number of channels of point feature layer.", |
28 |
| - "default": 7 |
| 37 | + "circle_nms_dist_threshold": { |
| 38 | + "type": "number", |
| 39 | + "description": "", |
| 40 | + "default": 0.3, |
| 41 | + "minimum": 0.0, |
| 42 | + "maximum": 1.0 |
29 | 43 | },
|
30 |
| - "max_voxel_size": { |
31 |
| - "type": "integer", |
32 |
| - "description": "A maximum size of voxel grid.", |
33 |
| - "default": 40000 |
34 |
| - }, |
35 |
| - "point_cloud_range": { |
| 44 | + "iou_nms_target_class_names": { |
36 | 45 | "type": "array",
|
37 |
| - "description": "An array of distance ranges of each class, this must have same length with `class_names`.", |
38 |
| - "default": [-121.6, -76.8, -3.0, 121.6, 76.8, 5.0] |
| 46 | + "description": "An array of class names to be target in NMS.", |
| 47 | + "default": ["CAR"], |
| 48 | + "uniqueItems": true |
39 | 49 | },
|
40 |
| - "voxel_size": { |
41 |
| - "type": "array", |
42 |
| - "description": "An array of voxel grid sizes for PointPainting, this must have same length with `paint_class_names`.", |
43 |
| - "default": [0.32, 0.32, 8.0] |
| 50 | + "iou_search_distance_2d": { |
| 51 | + "type": "number", |
| 52 | + "description": "A maximum distance value to search the nearest objects.", |
| 53 | + "default": 10.0, |
| 54 | + "minimum": 0.0 |
44 | 55 | },
|
45 |
| - "down_sample_factor": { |
46 |
| - "type": "integer", |
47 |
| - "description": "A scale factor of downsampling points", |
48 |
| - "default": 1, |
49 |
| - "minimum": 1 |
| 56 | + "iou_nms_threshold": { |
| 57 | + "type": "number", |
| 58 | + "description": "A threshold value of NMS using IoU score.", |
| 59 | + "default": 0.1, |
| 60 | + "minimum": 0.0, |
| 61 | + "maximum": 1.0 |
50 | 62 | },
|
51 |
| - "encoder_in_feature_size": { |
52 |
| - "type": "integer", |
53 |
| - "description": "A size of encoder input feature channels.", |
54 |
| - "default": 12 |
55 |
| - } |
56 |
| - } |
57 |
| - }, |
58 |
| - "densification_params": { |
59 |
| - "type": "object", |
60 |
| - "description": "Parameters for pointcloud densification.", |
61 |
| - "properties": { |
62 |
| - "world_frame_id": { |
63 |
| - "type": "string", |
64 |
| - "description": "A name of frame id where world coordinates system is defined with respect to.", |
65 |
| - "default": "map" |
66 |
| - }, |
67 |
| - "num_past_frames": { |
68 |
| - "type": "integer", |
69 |
| - "description": "A number of past frames to be considered as same input frame.", |
70 |
| - "default": 0, |
71 |
| - "minimum": 0 |
72 |
| - } |
73 |
| - } |
74 |
| - }, |
75 |
| - "omp_params": { |
76 |
| - "type": "object", |
77 |
| - "properties": { |
78 |
| - "num_threads": { |
79 |
| - "type": "integer", |
80 |
| - "description": "The number of threads that is set to the environment variable OMP_NUM_THREADS.", |
81 |
| - "default": 1, |
82 |
| - "minimum": 1 |
| 63 | + "has_twist": { |
| 64 | + "type": "boolean", |
| 65 | + "description": "Indicates whether the model outputs twist value.", |
| 66 | + "default": false |
83 | 67 | }
|
84 | 68 | }
|
85 | 69 | }
|
86 | 70 | },
|
87 |
| - "required": ["model_params", "densification_params", "omp_params"] |
| 71 | + "required": ["post_process_params", "densification_params"] |
88 | 72 | }
|
89 | 73 | },
|
90 | 74 | "properties": {
|
|
0 commit comments