Statistics.h
Go to the documentation of this file.
1 /*
2  * OpenVINS: An Open Platform for Visual-Inertial Research
3  * Copyright (C) 2018-2023 Patrick Geneva
4  * Copyright (C) 2018-2023 Guoquan Huang
5  * Copyright (C) 2018-2023 OpenVINS Contributors
6  * Copyright (C) 2018-2019 Kevin Eckenhoff
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <https://www.gnu.org/licenses/>.
20  */
21 
22 #ifndef OV_EVAL_STATISTICS_H
23 #define OV_EVAL_STATISTICS_H
24 
25 #include <fstream>
26 #include <iostream>
27 #include <string>
28 
29 #include <Eigen/Eigen>
30 
31 namespace ov_eval {
32 
39 struct Statistics {
40 
41 public:
43  double rmse = 0.0;
44 
46  double mean = 0.0;
47 
49  double median = 0.0;
50 
52  double std = 0.0;
53 
55  double max = 0.0;
56 
58  double min = 0.0;
59 
61  double ninetynine = 0.0;
62 
64  std::vector<double> timestamps;
65 
67  std::vector<double> values;
68 
70  std::vector<double> values_bound;
71 
73  void calculate() {
74 
75  // Sort the data for easy finding of values
76  std::vector<double> values_sorted = values;
77  std::sort(values_sorted.begin(), values_sorted.end());
78 
79  // If we don't have any data, just return :(
80  if (values_sorted.empty())
81  return;
82 
83  // Now that its been sorted, can easily grab min and max
84  min = values_sorted.at(0);
85  max = values_sorted.at(values_sorted.size() - 1);
86 
87  // Compute median
88  // ODD: grab middle from the sorted vector
89  // EVEN: average the middle two numbers
90  if (values_sorted.size() == 1) {
91  median = values_sorted.at(values_sorted.size() - 1);
92  } else if (values_sorted.size() % 2 == 1) {
93  median = values_sorted.at(values_sorted.size() / 2);
94  } else if (values_sorted.size() > 1) {
95  median = 0.5 * (values_sorted.at(values_sorted.size() / 2 - 1) + values_sorted.at(values_sorted.size() / 2));
96  } else {
97  median = 0.0;
98  }
99 
100  // Compute mean and rmse
101  mean = 0;
102  for (size_t i = 0; i < values_sorted.size(); i++) {
103  assert(!std::isnan(values_sorted.at(i)));
104  mean += values_sorted.at(i);
105  rmse += values_sorted.at(i) * values_sorted.at(i);
106  }
107  mean /= values_sorted.size();
108  rmse = std::sqrt(rmse / values_sorted.size());
109 
110  // Using mean, compute standard deviation
111  std = 0;
112  for (size_t i = 0; i < values_sorted.size(); i++) {
113  std += std::pow(values_sorted.at(i) - mean, 2);
114  }
115  std = std::sqrt(std / (values_sorted.size() - 1));
116 
117  // 99th percentile
118  // TODO: is this correct?
119  // TODO: http://sphweb.bumc.bu.edu/otlt/MPH-Modules/BS/BS704_Probability/BS704_Probability10.html
120  ninetynine = mean + 2.326 * std;
121  }
122 
124  void clear() {
125  timestamps.clear();
126  values.clear();
127  values_bound.clear();
128  }
129 };
130 
131 } // namespace ov_eval
132 
133 #endif // OV_EVAL_STATISTICS_H
Statistics object for a given set scalar time series values.
Definition: Statistics.h:39
double ninetynine
99th percentile
Definition: Statistics.h:61
double rmse
Root mean squared for the given values.
Definition: Statistics.h:43
double mean
Mean of the given values.
Definition: Statistics.h:46
std::vector< double > values
Values (e.g. error or nees at a given time)
Definition: Statistics.h:67
Evaluation and recording utilities.
void calculate()
Will calculate all values from our vectors of information.
Definition: Statistics.h:73
std::vector< double > values_bound
Bound of these values (e.g. our expected covariance bound)
Definition: Statistics.h:70
double max
Max of the given values.
Definition: Statistics.h:55
double std
Standard deviation of given values.
Definition: Statistics.h:52
double min
Min of the given values.
Definition: Statistics.h:58
void clear()
Will clear any old values.
Definition: Statistics.h:124
double median
Median of the given values.
Definition: Statistics.h:49
std::vector< double > timestamps
Timestamp when these values occured at.
Definition: Statistics.h:64


ov_eval
Author(s): Patrick Geneva , Kevin Eckenhoff , Guoquan Huang
autogenerated on Wed Jun 21 2023 03:05:40