We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e30f1cc commit 1fafa9dCopy full SHA for 1fafa9d
perception/multi_object_tracker/src/debugger/debugger.cpp
@@ -98,7 +98,7 @@ void TrackerDebugger::checkDelay(diagnostic_updater::DiagnosticStatusWrapper & s
98
stat.summary(diagnostic_msgs::msg::DiagnosticStatus::ERROR, "Measurement time is not set.");
99
return;
100
}
101
- const double & delay = pipeline_latency_ms_; // [s]
+ const double & delay = pipeline_latency_ms_ / 1e3; // [s]
102
103
if (delay == 0.0) {
104
stat.summary(diagnostic_msgs::msg::DiagnosticStatus::OK, "Detection delay is not calculated.");
0 commit comments