GestureRecognitionToolkit  Version: 0.2.0
The Gesture Recognition Toolkit (GRT) is a cross-platform, open-source, c++ machine learning library for real-time gesture recognition.
Deprecated List
Member CircularBuffer< T >::GRT_DEPRECATED_MSG ("Use getData() instead!", std::vector< T > getDataAsVector() const )
This function is now deprecated, you should use getData instead! Gets all the data in the buffer as a std::vector.
Member ClassificationData::eraseAllSamplesWithClassLabel (const UINT classLabel)
This function is now depreciated! You should use removeClass(const UINT classLabel) instead.
Member ClassificationData::GRT_DEPRECATED_MSG ("partition(...) is deprecated, use split(...) instead", ClassificationData partition(const UINT partitionPercentage, const bool useStratifiedSampling=false))
use split(...) instead
Parameters
partitionPercentagesets the percentage of data which remains in this instance, the remaining percentage of data is then returned as the testing/validation dataset
useStratifiedSamplingsets if the dataset should be broken into homogeneous groups first before randomly being spilt, default value is false
Returns
a new ClassificationData instance, containing the remaining data not kept but this instance
Member GestureRecognitionPipeline::GRT_DEPRECATED_MSG ("use clear() instead.", bool clearAll())
This function is now deprecated, you should use clear() instead! Removes everything from the pipeline.
Member Matrix< T >::setAllValues (const T &value)
This function is now depreciated! You should use setAll(const T &value) instead.
Member MLBase::GRT_DEPRECATED_MSG ("loadModelFromFile(std::fstream &file) is deprecated, use load(std::fstream &file) instead", virtual bool loadModelFromFile(std::fstream &file))
use load(std::fstream &file) instead
Parameters
filea reference to the file the model will be loaded from
Returns
returns true if the model was loaded successfully, false otherwise
Member MLBase::GRT_DEPRECATED_MSG ("saveModelToFile(std::fstream &file) is deprecated, use save(std::fstream &file) instead", virtual bool saveModelToFile(std::fstream &file) const )
use save(std::fstream &file) instead
Parameters
filea reference to the file the model will be saved to
Returns
returns true if the model was saved successfully, false otherwise
Member MLBase::GRT_DEPRECATED_MSG ("loadModelFromFile(std::string filename) is deprecated, use load(std::string filename) instead", virtual bool loadModelFromFile(std::string filename))
use load(std::string filename) instead
Parameters
filenamethe name of the file to load the model from
Returns
returns true if the model was loaded successfully, false otherwise
Member MLBase::GRT_DEPRECATED_MSG ("saveModelToFile(std::string filename) is deprecated, use save(std::string filename) instead", virtual bool saveModelToFile(std::string filename) const )
use save(std::string filename) instead
Parameters
thename of the file to save the model to
Returns
returns true if the model was saved successfully, false otherwise
Member RegressionData::GRT_DEPRECATED_MSG ("partition(...) is deprecated, use split(...) instead", RegressionData partition(const UINT trainingSizePercentage))
use split(...) instead
Parameters
partitionPercentagesets the percentage of data which remains in this instance, the remaining percentage of data is then returned as the testing/validation dataset
Returns
a new RegressionData instance, containing the remaining data not kept but this instance
Member TimeSeriesClassificationData::GRT_DEPRECATED_MSG ("partition(...) is deprecated, use split(...) instead", TimeSeriesClassificationData partition(const UINT partitionPercentage, const bool useStratifiedSampling=false))
use split(...) instead
Parameters
partitionPercentagesets the percentage of data which remains in this instance, the remaining percentage of data is then returned as the testing/validation dataset
useStratifiedSamplingsets if the dataset should be broken into homogeneous groups first before randomly being spilt, default value is false
Returns
a new TimeSeriesClassificationData instance, containing the remaining data not kept but this instance
Member UnlabelledData::GRT_DEPRECATED_MSG ("partition(...) is deprecated, use split(...) instead", UnlabelledData partition(const UINT partitionPercentage))
use split(...) instead
Parameters
partitionPercentagesets the percentage of data which remains in this instance, the remaining percentage of data is then returned as the testing/validation dataset
Returns
a new UnlabelledData instance, containing the remaining data not kept but this instance