Skip to content

Commit 9d7812c

Browse files
kosuke55badai-nguyen
authored andcommitted
fix from review
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
1 parent e07908c commit 9d7812c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

evaluator/perception_online_evaluator/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ where:
169169
| `smoothing_window_size` | Integer | Determines the window size for smoothing path, should be an odd number. |
170170
| `prediction_time_horizons` | list[double] | Time horizons for prediction evaluation in seconds. |
171171
| `stopped_velocity_threshold` | double | threshold velocity to check if vehicle is stopped |
172-
| `detection_radius_list` | double | Detection radius for objects to be evaluated.(used for objects count only) |
173-
| `detection_height_list` | double | Detection height for objects to be evaluated. (used for objects count only) |
172+
| `detection_radius_list` | list[double] | Detection radius for objects to be evaluated.(used for objects count only) |
173+
| `detection_height_list` | list[double] | Detection height for objects to be evaluated. (used for objects count only) |
174174
| `detection_count_purge_seconds` | double | Time window for purging object detection counts. |
175175
| `objects_count_window_seconds` | double | Time window for keeping object detection counts. The number of object detections within this time window is stored in `detection_count_vector_` |
176176
| `target_object.*.check_lateral_deviation` | bool | Whether to check lateral deviation for specific object types (car, truck, etc.). |

evaluator/perception_online_evaluator/src/perception_online_evaluator_node.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,6 @@ rcl_interfaces::msg::SetParametersResult PerceptionOnlineEvaluatorNode::onParame
273273
result.successful = true;
274274
result.reason = "success";
275275

276-
std::cerr << "Parameters updated" << std::endl;
277276
return result;
278277
}
279278

0 commit comments

Comments
 (0)