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.
ClassificationSample.cpp
1 /*
2 GRT MIT License
3 Copyright (c) <2012> <Nicholas Gillian, Media Lab, MIT>
4 
5 Permission is hereby granted, free of charge, to any person obtaining a copy of this software
6 and associated documentation files (the "Software"), to deal in the Software without restriction,
7 including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
9 subject to the following conditions:
10 
11 The above copyright notice and this permission notice shall be included in all copies or substantial
12 portions of the Software.
13 
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
15 LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
16 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
17 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
18 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 */
20 
21 #define GRT_DLL_EXPORTS
22 #include "ClassificationSample.h"
23 
24 GRT_BEGIN_NAMESPACE
25 
26 ClassificationSample::ClassificationSample():numDimensions(0),classLabel(0){
27 }
28 
29 ClassificationSample::ClassificationSample(const UINT numDimensions){
30  this->numDimensions = numDimensions;
31  classLabel = 0;
32  sample.resize( numDimensions );
33 }
34 
35 ClassificationSample::ClassificationSample(const UINT classLabel,const VectorFloat &sample){
36  this->classLabel = classLabel;
37  this->sample = sample;
38  this->numDimensions = (UINT)sample.size();
39 }
40 
41 ClassificationSample::ClassificationSample(const ClassificationSample &rhs){
42  this->classLabel = rhs.classLabel;
43  this->sample = rhs.sample;
44  this->numDimensions = rhs.numDimensions;
45 }
46 
47 ClassificationSample::~ClassificationSample(){
48 }
49 
50 bool ClassificationSample::clear(){
51  numDimensions = 0;
52  classLabel = 0;
53  sample.clear();
54  return true;
55 }
56 
57 bool ClassificationSample::set(UINT classLabel,const VectorFloat &sample){
58  this->classLabel = classLabel;
59  this->sample = sample;
60  this->numDimensions = (UINT)sample.size();
61  return true;
62 }
63 
64 bool ClassificationSample::setClassLabel(const UINT classLabel){
65  this->classLabel = classLabel;
66  return true;
67 }
68 
69 bool ClassificationSample::setSample(const VectorFloat &sample){
70  this->sample = sample;
71  this->numDimensions = (UINT)sample.size();
72  return true;
73 }
74 
75 GRT_END_NAMESPACE
virtual bool resize(const unsigned int size)
Definition: Vector.h:133
This class stores the class label and raw data for a single labelled classification sample...