GestureRecognitionToolkit  Version: 0.2.5
The Gesture Recognition Toolkit (GRT) is a cross-platform, open-source, c++ machine learning library for real-time gesture recognition.
Clusterer.h File Reference

This is the main base class that all GRT Clustering algorithms should inherit from. More...

#include "MLBase.h"

Go to the source code of this file.

Classes

class  Clusterer
 
class  RegisterClustererModule< T >
 This class provides an interface for classes to register themselves with the clusterer base class, this enables Cluterer algorithms to be automatically be created from just a string, e.g.: Clusterer *kmeans = create( "KMeans" );. More...
 

Functions

template<typename T >
ClusterercreateNewClustererModuleInstance ()
 Returns a pointer to a new instance of the template class, the caller is responsible for deleting the pointer.
 

Detailed Description

This is the main base class that all GRT Clustering algorithms should inherit from.

Author
Nicholas Gillian ngill.nosp@m.ian@.nosp@m.media.nosp@m..mit.nosp@m..edu
Version
1.0

A large number of the functions in this class are virtual and simply return false as these functions must be overwridden by the inheriting class.

Definition in file Clusterer.h.