-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathclassifier_ann.h
67 lines (62 loc) · 1.79 KB
/
classifier_ann.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
#ifndef CLASSIFIER_ANN_H
#define CLASSIFIER_ANN_H
#include "classifierinterface.h"
#include "classifier_rf.h"
// ANN::METHOD
static const int ann_method_idx[] = {
cv::ANN_MLP_TrainParams::BACKPROP,
cv::ANN_MLP_TrainParams::RPROP
};
static const char* ann_method_name[] = {
"ANN::BACKPROP",
"ANN::RPROP"
};
static const int ann_method_num = sizeof(ann_method_idx)/sizeof(ann_method_idx[0]);
// ANN::F(X)
static const int ann_fx_idx[] = {
cv::NeuralNet_MLP::SIGMOID_SYM,
cv::NeuralNet_MLP::GAUSSIAN
};
static const char* ann_fx_name[] = {
"ANN::SIGMOID_SYM",
"ANN::GAUSSIAN"
};
static const int ann_fx_num = sizeof(ann_fx_idx)/sizeof(ann_fx_idx[0]);
/////////////////////////////////////////////////
class ClassifierANN : public ClassifierInterface
{
public:
ClassifierANN();
//
void trainData(const std::vector<cv::Point>& data, const std::vector<int>& labels);
int classify(int x, int y);
QString toQString() const;
//
void setParameters(
int numOfClasses,
int typeMethod, int typeFx,
double param1, double param2,
int numNeurons_Layer1, int numNeurons_Layer2, int numNeurons_Layer3,
int termCrit_Type, int termCrit_MaxNumIterations, float termCrit_Accuracy);
private:
cv::NeuralNet_MLP cls;
cv::Mat weights;
cv::Mat layerSizes;
cv::Mat getLayerSizes();
cv::Mat getOutputClasses();
//
int par_NumOfClasses;
int par_TypeMethod;
int par_TypeFx;
double par_Param1;
double par_Param2;
//
int par_NumNeurons_Layer1;
int par_NumNeurons_Layer2;
int par_NumNeurons_Layer3;
//
int par_TermCrit_Type;
int par_TermCrit_MaxNumIterations;
float par_TermCrit_Accuracy;
};
#endif // CLASSIFIER_ANN_H