MCPcopy Create free account
hub / github.com/AutonomousFieldRoboticsLab/SVIn / GetMedian

Method GetMedian

pose_graph/src/utils/Statistics.cpp:140–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138}
139double Statistics::GetMax(std::string const& tag) { return GetMax(GetHandle(tag)); }
140double Statistics::GetMedian(size_t handle) {
141 std::lock_guard<std::mutex> lock(Instance().mutex_);
142 return Instance().stats_collectors_[handle].Median();
143}
144double Statistics::GetMedian(std::string const& tag) { return GetMedian(GetHandle(tag)); }
145double Statistics::GetQ1(size_t handle) {
146 std::lock_guard<std::mutex> lock(Instance().mutex_);

Callers

nothing calls this directly

Calls 1

MedianMethod · 0.80

Tested by

no test coverage detected