-
Notifications
You must be signed in to change notification settings - Fork 3
/
statisticscalculator.h
101 lines (74 loc) · 2.29 KB
/
statisticscalculator.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#ifndef STATISTICSCALCULATOR_H
#define STATISTICSCALCULATOR_H
#include <QDebug>
#include "pr_helper.h"
#include <numeric>
#include<opencv2/core/core.hpp>
class StatisticsCalculator
{
public:
StatisticsCalculator();
/**
* @brief setPosVector
* @param posVector
*/
void setPosVector(pr::training_vector *posVector);
/**
* @brief setNegVector
* @param negVector
*/
void setNegVector(pr::training_vector *negVector);
/**
* @brief positiveMeanVector
* @return
*/
pr::double_vector *positiveMeanVector();
/**
* @brief positiveStdDevVector
* @return
*/
pr::double_vector *positiveStdDevVector();
/**
* @brief positiveCovarVector
* @return
*/
pr::double_vector *positiveCovarVector();
/**
* @brief negativeMeanVector
* @return
*/
pr::double_vector *negativeMeanVector();
/**
* @brief negativeStdDevVector
* @return
*/
pr::double_vector *negativeStdDevVector();
/**
* @brief negativeCovarVector
* @return
*/
pr::double_vector *negativeCovarVector();
private:
pr::training_vector *mPosVector;
pr::training_vector *mNegVector;
pr::double_vector mPositiveMeanVector;
pr::double_vector mPositiveStdDevVector;
pr::double_vector mPositiveCovarVector;
pr::double_vector mNegativeMeanVector;
pr::double_vector mNegativeStdDevVector;
pr::double_vector mNegativeCovarVector;
//these booleans indicate if calculation of positive and negative
//mean vectors are done or not. if not, and calculate std dev is requested
//then mean vectors will be calculated first because std dev relies on them
bool mPosMeanCalculated, mNegMeanCalculated;
void calculateMeanVector(pr::training_vector *data
, pr::double_vector &out
, pr::TrainingType trainingType);
void calculateStdDevVector(pr::training_vector *data
, pr::double_vector &out
, pr::TrainingType trainingType);
void calculateCovarVector(pr::training_vector *data
, pr::double_vector &out
, pr::TrainingType trainingType);
};
#endif // STATISTICSCALCULATOR_H