![]() |
Direct Graphical Models
v.1.7.0
|
OpenCV Nearest Neighbor training class. More...
#include <TrainNodeCvKNN.h>
Public Member Functions | |
CTrainNodeCvKNN (byte nStates, word nFeatures, TrainNodeCvKNNParams params=TRAIN_NODE_CV_KNN_PARAMS_DEFAULT) | |
Constructor. More... | |
CTrainNodeCvKNN (byte nStates, word nFeatures, size_t maxSamples) | |
Constructor. More... | |
virtual | ~CTrainNodeCvKNN (void) |
void | reset (void) |
Resets class variables. More... | |
void | save (const std::string &path, const std::string &name=std::string(), short idx=-1) const |
Saves the training data. More... | |
void | load (const std::string &path, const std::string &name=std::string(), short idx=-1) |
Loads the training data. More... | |
void | addFeatureVec (const Mat &featureVector, byte gt) |
Adds new feature vector. More... | |
void | train (bool doClean=false) |
Random model training. More... | |
![]() | |
CTrainNode (byte nStates, word nFeatures) | |
Constructor. More... | |
virtual | ~CTrainNode (void)=default |
void | addFeatureVecs (const Mat &featureVectors, const Mat >) |
Adds a block of new feature vectors. More... | |
void | addFeatureVecs (const vec_mat_t &featureVectors, const Mat >) |
Adds a block of new feature vectors. More... | |
Mat | getNodePotentials (const Mat &featureVectors, const Mat &weights=Mat(), float Z=0.0f) const |
Returns a block of node potentials, based on the block of feature vector. More... | |
Mat | getNodePotentials (const vec_mat_t &featureVectors, const Mat &weights=Mat(), float Z=0.0f) const |
Returns a block of node potentials, based on the block of feature vector. More... | |
Mat | getNodePotentials (const Mat &featureVector, float weight, float Z=0.0f) const |
Returns the node potential, based on the feature vector. More... | |
![]() | |
ITrain (byte nStates, word nFeatures) | |
Constructor. More... | |
virtual | ~ITrain (void)=default |
word | getNumFeatures (void) const |
Returns number of features. More... | |
![]() | |
CBaseRandomModel (byte nStates) | |
Constructor. More... | |
virtual | ~CBaseRandomModel (void) |
byte | getNumStates (void) const |
Returns number of states (classes) More... | |
Protected Member Functions | |
void | saveFile (FILE *pFile) const |
Saves the random model into the file. More... | |
void | loadFile (FILE *pFile) |
Loads the random model from the file. More... | |
void | calculateNodePotentials (const Mat &featureVector, Mat &potential, Mat &mask) const |
Calculates the node potential, based on the feature vector. More... | |
![]() | |
std::string | generateFileName (const std::string &path, const std::string &name, short idx) const |
Generates name of the data file for storing random model parameters. More... | |
Protected Attributes | |
Ptr< ml::KNearest > | m_pKNN |
k-Nearest Neighbors More... | |
CSamplesAccumulator * | m_pSamplesAcc |
Samples Accumulator. More... | |
![]() | |
byte | m_nStates |
The number of states (classes) More... | |
Private Member Functions | |
void | init (TrainNodeCvKNNParams params) |
Private Attributes | |
TrainNodeCvKNNParams | m_params |
Additional Inherited Members | |
![]() | |
static std::shared_ptr< CTrainNode > | create (byte nodeRandomModel, byte nStates, word nFeatures) |
Factory method returning node trainer object. More... | |
OpenCV Nearest Neighbor training class.
This class implements the k-nearest neighbors classifier (k-NN), where the input consists of the k closest training samples in the feature space and the output depends on k-Nearest Neighbors.
This trainer is especially effective for low-dimentional feature spaces.
Definition at line 36 of file TrainNodeCvKNN.h.
DirectGraphicalModels::CTrainNodeCvKNN::CTrainNodeCvKNN | ( | byte | nStates, |
word | nFeatures, | ||
TrainNodeCvKNNParams | params = TRAIN_NODE_CV_KNN_PARAMS_DEFAULT |
||
) |
Constructor.
nStates | Number of states (classes) |
nFeatures | Number of features |
params | k-Nearest Neighbors parameters (Ref. TrainNodeCvKNNParams) |
Definition at line 7 of file TrainNodeCvKNN.cpp.
DirectGraphicalModels::CTrainNodeCvKNN::CTrainNodeCvKNN | ( | byte | nStates, |
word | nFeatures, | ||
size_t | maxSamples | ||
) |
Constructor.
nStates | Number of states (classes) |
nFeatures | Number of features |
maxSamples | Maximum number of samples to be used in training
|
Definition at line 13 of file TrainNodeCvKNN.cpp.
|
virtual |
Definition at line 32 of file TrainNodeCvKNN.cpp.
|
virtual |
Adds new feature vector.
Used to add a featureVector, corresponding to the ground-truth state (class) gt for training
featureVector | Multi-dimensinal point: Mat(size: nFeatures x 1; type: CV_8UC1) |
gt | Corresponding ground-truth state (class) |
Implements DirectGraphicalModels::CTrainNode.
Definition at line 55 of file TrainNodeCvKNN.cpp.
|
protectedvirtual |
Calculates the node potential, based on the feature vector.
This function calculates the potentials of the node, described with the sample featureVector, being in each state (belonging to each class). These potentials are united in the node potential vector:
\[nodePot[nStates] = f(\textbf{f}[nFeatures]).\]
Functions \( f \) must be implemented in derived classes.
[in] | featureVector | Multi-dimensinal point \(\textbf{f}\): Mat(size: nFeatures x 1; type: CV_{XX}C1) |
[in,out] | potential | Node potentials: Mat(size: nStates x 1; type: CV_32FC1). This parameter should be preinitialized and set to value 0. |
[in,out] | mask | Relevant Node potentials: Mat(size: nStates x 1; type: CV_8UC1). This parameter should be preinitialized and set to value 1 (all potentials are relevant). |
Implements DirectGraphicalModels::CTrainNode.
Definition at line 94 of file TrainNodeCvKNN.cpp.
|
private |
|
virtual |
Loads the training data.
Allows to re-use the class. Loads data to the file: "<path><name>_<idx>.dat".
path | Path to the folder, containing the data file. |
name | Name of data file. If empty, will be generated automatically from the class name. |
idx | Index of the data file. Negative value means no index. |
Reimplemented from DirectGraphicalModels::CBaseRandomModel.
Definition at line 49 of file TrainNodeCvKNN.cpp.
|
inlineprotectedvirtual |
Loads the random model from the file.
Allows to re-use the class.
pFile | Pointer to the file, opened for reading. |
Implements DirectGraphicalModels::CBaseRandomModel.
Definition at line 67 of file TrainNodeCvKNN.h.
|
virtual |
Resets class variables.
Allows to re-use the class.
Implements DirectGraphicalModels::CBaseRandomModel.
Definition at line 37 of file TrainNodeCvKNN.cpp.
|
virtual |
Saves the training data.
Allows to re-use the class. Stores data to the file: "<path><name>_<idx>.dat".
path | Path to the destination folder. |
name | Name of data file. If empty, will be generated automatically from the class name. |
idx | Index of the destination file. Negative value means no index. |
Reimplemented from DirectGraphicalModels::CBaseRandomModel.
Definition at line 43 of file TrainNodeCvKNN.cpp.
|
inlineprotectedvirtual |
Saves the random model into the file.
Allows to re-use the class.
pFile | Pointer to the file, opened for writing. |
Implements DirectGraphicalModels::CBaseRandomModel.
Definition at line 66 of file TrainNodeCvKNN.h.
|
virtual |
Random model training.
Auxilary function for training - some derived classes may use this function inbetween training and classification phases
doClean | Flag indicating if the memory, keeping the trining data should be released after training |
Reimplemented from DirectGraphicalModels::CTrainNode.
Definition at line 60 of file TrainNodeCvKNN.cpp.
|
private |
Definition at line 81 of file TrainNodeCvKNN.h.
|
protected |
k-Nearest Neighbors
Definition at line 72 of file TrainNodeCvKNN.h.
|
protected |
Samples Accumulator.
Definition at line 73 of file TrainNodeCvKNN.h.