tesseract
3.03
|
#include <params_training_featdef.h>
Public Member Functions | |
ParamsTrainingHypothesis () | |
ParamsTrainingHypothesis (const ParamsTrainingHypothesis &other) | |
Public Attributes | |
float | features [PTRAIN_NUM_FEATURE_TYPES] |
STRING | str |
float | cost |
Definition at line 106 of file params_training_featdef.h.
Definition at line 107 of file params_training_featdef.h.
: cost(0.0) { memset(features, 0, sizeof(float) * PTRAIN_NUM_FEATURE_TYPES); }
tesseract::ParamsTrainingHypothesis::ParamsTrainingHypothesis | ( | const ParamsTrainingHypothesis & | other | ) | [inline] |
Definition at line 110 of file params_training_featdef.h.
{ memcpy(features, other.features, sizeof(float) * PTRAIN_NUM_FEATURE_TYPES); str = other.str; cost = other.cost; }
Definition at line 118 of file params_training_featdef.h.
Definition at line 116 of file params_training_featdef.h.
Definition at line 117 of file params_training_featdef.h.