File tree 2 files changed +4
-4
lines changed
perception/autoware_lidar_centerpoint
include/autoware/lidar_centerpoint
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ class LidarCenterPointNode : public rclcpp::Node
57
57
bool has_twist_{false };
58
58
float max_allowed_processing_time_;
59
59
int max_consecutive_warn_count_;
60
- int consecutive_delay_count_= 0 ;
60
+ int consecutive_delay_count_ = 0 ;
61
61
62
62
NonMaximumSuppression iou_bev_nms_;
63
63
DetectionClassRemapper detection_class_remapper_;
Original file line number Diff line number Diff line change @@ -196,11 +196,11 @@ void LidarCenterPointNode::pointCloudCallback(
196
196
197
197
consecutive_delay_count_++;
198
198
199
- if (consecutive_delay_count_ <= max_consecutive_warn_count_){
199
+ if (consecutive_delay_count_ <= max_consecutive_warn_count_) {
200
200
std::stringstream message;
201
201
message << " CenterPoint processing time exceeds the acceptable limit of "
202
- << max_allowed_processing_time_ << " ms by "
203
- << (processing_time_ms - max_allowed_processing_time_) << " ms." ;
202
+ << max_allowed_processing_time_ << " ms by "
203
+ << (processing_time_ms - max_allowed_processing_time_) << " ms." ;
204
204
205
205
diagnostics_interface_ptr_->update_level_and_message (
206
206
diagnostic_msgs::msg::DiagnosticStatus::WARN, message.str ());
You can’t perform that action at this time.
0 commit comments