-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHyperTime.h
73 lines (59 loc) · 1.46 KB
/
CHyperTime.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
#ifndef CHYPERTIME_H
#define CHYPERTIME_H
#include <opencv2/ml/ml.hpp>
using namespace cv;
#include <stdio.h>
#include <iostream>
#include <algorithm>
#include <math.h>
#include <string.h>
#include <stdint.h>
#include "CTimer.h"
#include "CTemporal.h"
#include "CFrelement.h"
/**
@author Tom Krajnik
*/
typedef struct{
long int t;
float v;
}SHyperTimeSample;
using namespace std;
using namespace cv::ml;
class CHyperTime: public CTemporal
{
public:
CHyperTime(int id);
~CHyperTime();
//adds a serie of measurements to the data
int add(uint32_t time,float state);
void init(int iMaxPeriod, int elements, int numClasses);
//estimates the probability for the given times
float estimate(uint32_t time);
float predict(uint32_t time);
void update(int maxOrder, unsigned int* times = NULL, float* signal = NULL, int length = 0);
void print(bool verbose=true);
int exportToArray(double* array, int maxLen);
int importFromArray(double* array, int len);
int save(FILE* file,bool lossy = false);
int load(FILE* file);
int save(const char* name, bool lossy = false);
int load(const char* name);
private:
SHyperTimeSample sampleArray[1000000];
int numSamples;
int positives;
int negatives;
Ptr<EM> modelPositive;
Ptr<EM> modelNegative;
int spaceDimension;
int timeDimension;
int covarianceType;
vector<int> periods;
float errors[100];
float corrective;
int maxTimeDimension;
private:
void reinit_models_if_null();
};
#endif