![]() |
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 | |
MinDistModel () | |
MinDistModel (const MinDistModel &rhs) | |
~MinDistModel (void) | |
MinDistModel & | operator= (const MinDistModel &rhs) |
bool | train (UINT classLabel, MatrixDouble &trainingData, UINT numClusters, double minChange, UINT maxNumEpochs) |
double | predict (const VectorDouble &observation) |
void | recomputeThresholdValue () |
UINT | getClassLabel () const |
UINT | getNumFeatures () const |
UINT | getNumClusters () const |
UINT | getDistanceMode () const |
double | getRejectionThreshold () const |
double | getGamma () const |
double | getTrainingMu () const |
double | getTrainingSigma () const |
MatrixDouble | getClusters () const |
bool | setClassLabel (UINT classLabel) |
bool | setClusters (MatrixDouble &clusters) |
bool | setGamma (double gamma) |
bool | setRejectionThreshold (double rejectionThreshold) |
bool | setTrainingSigma (double trainingSigma) |
bool | setTrainingMu (double trainingMu) |
Definition at line 37 of file MinDistModel.h.
MinDistModel::MinDistModel | ( | ) |
Default Constructor
Definition at line 22 of file MinDistModel.cpp.
MinDistModel::MinDistModel | ( | const MinDistModel & | rhs | ) |
Default Copy Constructor
Definition at line 32 of file MinDistModel.cpp.
MinDistModel::~MinDistModel | ( | void | ) |
Default Destructor
Definition at line 44 of file MinDistModel.cpp.
MinDistModel & MinDistModel::operator= | ( | const MinDistModel & | rhs | ) |
Defines how the data from the rhs MinDistModel should be copied to this MinDistModel
const | MinDistModel &rhs: another instance of a MinDistModel |
Definition at line 46 of file MinDistModel.cpp.