|
85 | 85 |
|
86 | 86 | - For `classification2d`, there is no need to specify the following parameters.
|
87 | 87 |
|
88 |
| - | Arguments | type | Mandatory | Description | |
89 |
| - | :--------------------------- | :-----------: | :-------: | :------------------------------------- | |
90 |
| - | `center_distance_thresholds` | `List[float]` | Yes | Thresholds of center distance | |
91 |
| - | `plane_distance_thresholds` | `List[float]` | Yes | Thresholds of plane distance (Only 3D) | |
92 |
| - | `iou_2d_thresholds` | `List[float]` | Yes | Thresholds of IoU in 2D | |
93 |
| - | `iou_3d_thresholds` | `List[float]` | Yes | Thresholds of IoU in 3D (Only 3D) | |
| 88 | + | Arguments | type | Mandatory | Description | |
| 89 | + | :------------------------------- | :-----------: | :-------: | :------------------------------------- | |
| 90 | + | `center_distance_thresholds` | `List[float]` | Yes | Thresholds of center distance | |
| 91 | + | `center_distance_bev_thresholds` | `List[float]` | Yes | Thresholds of center distance in BEV | |
| 92 | + | `plane_distance_thresholds` | `List[float]` | Yes | Thresholds of plane distance (Only 3D) | |
| 93 | + | `iou_2d_thresholds` | `List[float]` | Yes | Thresholds of IoU in 2D | |
| 94 | + | `iou_3d_thresholds` | `List[float]` | Yes | Thresholds of IoU in 3D (Only 3D) | |
94 | 95 |
|
95 | 96 | - **Error cases in setting parameters**
|
96 | 97 |
|
|
108 | 109 | "merge_similar_labels": False,
|
109 | 110 | "allow_matching_unknown": True,
|
110 | 111 | "center_distance_thresholds": [[1.0, 1.0, 1.0, 1.0]],
|
| 112 | + "center_distance_bev_thresholds": [[1.0, 1.0, 1.0, 1.0]], |
111 | 113 | "plane_distance_thresholds": [2.0, 3.0],
|
112 | 114 | "iou_2d_thresholds": [0.5],
|
113 | 115 | "iou_3d_thresholds": [0.5],
|
|
138 | 140 | "merge_similar_labels": False,
|
139 | 141 | "allow_matching_unknown": True,
|
140 | 142 | "center_distance_thresholds": [[1.0, 1.0, 1.0, 1.0]],
|
| 143 | + "center_distance_bev_thresholds": [[1.0, 1.0, 1.0, 1.0]], |
141 | 144 | "plane_distance_thresholds": [2.0, 3.0],
|
142 | 145 | "iou_2d_thresholds": [0.5],
|
143 | 146 | "iou_3d_thresholds": [0.5],
|
|
165 | 168 | "merge_similar_labels": False,
|
166 | 169 | "allow_matching_unknown": True,
|
167 | 170 | "center_distance_thresholds": [[1.0, 1.0, 1.0, 1.0]],
|
| 171 | + "center_distance_bev_thresholds": [[1.0, 1.0, 1.0, 1.0]], |
168 | 172 | "plane_distance_thresholds": [2.0, 3.0],
|
169 | 173 | "iou_2d_thresholds": [0.5],
|
170 | 174 | "iou_3d_thresholds": [0.5],
|
|
190 | 194 | "merge_similar_labels": False,
|
191 | 195 | "allow_matching_unknown": True,
|
192 | 196 | "center_distance_thresholds": [[1.0, 1.0, 1.0, 1.0]],
|
| 197 | + "center_distance_bev_thresholds": [[1.0, 1.0, 1.0, 1.0]], |
193 | 198 | "plane_distance_thresholds": [2.0, 3.0],
|
194 | 199 | "iou_2d_thresholds": [0.5],
|
195 | 200 | "iou_3d_thresholds": [0.5],
|
|
217 | 222 | "merge_similar_labels": False,
|
218 | 223 | "allow_matching_unknown": True,
|
219 | 224 | "center_distance_thresholds": [[1.0, 1.0, 1.0, 1.0]],
|
| 225 | + "center_distance_bev_thresholds": [[1.0, 1.0, 1.0, 1.0]], |
220 | 226 | "plane_distance_thresholds": [2.0, 3.0],
|
221 | 227 | "iou_2d_thresholds": [0.5],
|
222 | 228 | "iou_3d_thresholds": [0.5],
|
|
235 | 241 | ### `<class> CriticalObjectFilterConfig(...)`
|
236 | 242 |
|
237 | 243 | - An interface to determine target objects dynamically
|
238 |
| -- Specify in every frame, not in initialization of `PerceptionEvaluationManger` |
| 244 | +- Specify in every frame, not in initialization of `PerceptionEvaluationManager` |
239 | 245 | - See [perception_eval/evaluation/result/perception_frame_config](../../../perception_eval/perception_eval/evaluation/result/perception_frame_config.py)
|
240 | 246 |
|
241 | 247 | | Arguments | type | Mandatory | Description |
|
|
0 commit comments