![]() |
GestureRecognitionToolkit
Version: 1.0 Revision: 04-03-15
The Gesture Recognition Toolkit (GRT) is a cross-platform, open-source, c++ machine learning library for real-time gesture recognition.
|
Public Member Functions | |
TestResult () | |
TestResult (const TestResult &rhs) | |
~TestResult () | |
TestResult & | operator= (const TestResult &rhs) |
Public Attributes | |
unsigned int | numTrainingSamples |
unsigned int | numTestSamples |
double | accuracy |
double | rmsError |
double | totalSquaredError |
double | trainingTime |
double | testTime |
double | rejectionPrecision |
double | rejectionRecall |
VectorDouble | precision |
VectorDouble | recall |
VectorDouble | fMeasure |
MatrixDouble | confusionMatrix |
Definition at line 17 of file TestResult.h.
|
inline |
Default Constructor.
Initializes the TestResult instance.
Definition at line 24 of file TestResult.h.
|
inline |
Copy Constructor.
Initializes this instance by copying the data from the rhs instance
const | TestResult &rhs: another instance of the TestResult class |
Definition at line 34 of file TestResult.h.
|
inline |
Default Destructor.
Definition at line 41 of file TestResult.h.