We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f956eb commit 4bf12a4Copy full SHA for 4bf12a4
perception/multi_object_tracker/src/debugger.cpp
@@ -80,7 +80,7 @@ void TrackerDebugger::checkDelay(diagnostic_updater::DiagnosticStatusWrapper & s
80
stat.summary(diagnostic_msgs::msg::DiagnosticStatus::ERROR, "Measurement time is not set.");
81
return;
82
}
83
- const double & delay = pipeline_latency_ms_; // [s]
+ const double & delay = pipeline_latency_ms_ / 1e3; // [s]
84
85
if (delay == 0.0) {
86
stat.summary(diagnostic_msgs::msg::DiagnosticStatus::OK, "Detection delay is not calculated.");
0 commit comments