All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
tesseract::BestChoiceBundle Struct Reference

Bundle together all the things pertaining to the best choice/state. More...

#include <lm_state.h>

Public Member Functions

 BestChoiceBundle (int matrix_dimension)
 
 ~BestChoiceBundle ()
 

Public Attributes

bool updated
 Flag to indicate whether anything was changed. More...
 
DANGERR fixpt
 Places to try to fix the word suggested by ambiguity checking. More...
 
PointerVector< LanguageModelStatebeam
 
ViterbiStateEntrybest_vse
 Best ViterbiStateEntry and BLOB_CHOICE. More...
 

Detailed Description

Bundle together all the things pertaining to the best choice/state.

Definition at line 219 of file lm_state.h.

Constructor & Destructor Documentation

tesseract::BestChoiceBundle::BestChoiceBundle ( int  matrix_dimension)
inlineexplicit

Definition at line 220 of file lm_state.h.

221  : updated(false), best_vse(NULL) {
222  beam.reserve(matrix_dimension);
223  for (int i = 0; i < matrix_dimension; ++i)
224  beam.push_back(new LanguageModelState);
225  }
ViterbiStateEntry * best_vse
Best ViterbiStateEntry and BLOB_CHOICE.
Definition: lm_state.h:237
PointerVector< LanguageModelState > beam
Definition: lm_state.h:235
bool updated
Flag to indicate whether anything was changed.
Definition: lm_state.h:229
#define NULL
Definition: host.h:144
tesseract::BestChoiceBundle::~BestChoiceBundle ( )
inline

Definition at line 226 of file lm_state.h.

226 {}

Member Data Documentation

PointerVector<LanguageModelState> tesseract::BestChoiceBundle::beam

The beam. One LanguageModelState containing a list of ViterbiStateEntry per row in the ratings matrix containing all VSEs whose BLOB_CHOICE is somewhere in the corresponding row.

Definition at line 235 of file lm_state.h.

ViterbiStateEntry* tesseract::BestChoiceBundle::best_vse

Best ViterbiStateEntry and BLOB_CHOICE.

Definition at line 237 of file lm_state.h.

DANGERR tesseract::BestChoiceBundle::fixpt

Places to try to fix the word suggested by ambiguity checking.

Definition at line 231 of file lm_state.h.

bool tesseract::BestChoiceBundle::updated

Flag to indicate whether anything was changed.

Definition at line 229 of file lm_state.h.


The documentation for this struct was generated from the following file: