tesseract  3.04.00
tesseract::BestChoiceBundle Struct Reference

#include <lm_state.h>

Public Member Functions

 BestChoiceBundle (int matrix_dimension)
 
 ~BestChoiceBundle ()
 

Public Attributes

bool updated
 
DANGERR fixpt
 
PointerVector< LanguageModelStatebeam
 
ViterbiStateEntrybest_vse
 

Detailed Description

Definition at line 216 of file lm_state.h.

Constructor & Destructor Documentation

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

Definition at line 217 of file lm_state.h.

218  : updated(false), best_vse(NULL) {
219  beam.reserve(matrix_dimension);
220  for (int i = 0; i < matrix_dimension; ++i)
221  beam.push_back(new LanguageModelState);
222  }
ViterbiStateEntry * best_vse
Definition: lm_state.h:234
#define NULL
Definition: host.h:144
PointerVector< LanguageModelState > beam
Definition: lm_state.h:232
tesseract::BestChoiceBundle::~BestChoiceBundle ( )
inline

Definition at line 223 of file lm_state.h.

223 {}

Member Data Documentation

PointerVector<LanguageModelState> tesseract::BestChoiceBundle::beam

Definition at line 232 of file lm_state.h.

ViterbiStateEntry* tesseract::BestChoiceBundle::best_vse

Definition at line 234 of file lm_state.h.

DANGERR tesseract::BestChoiceBundle::fixpt

Definition at line 228 of file lm_state.h.

bool tesseract::BestChoiceBundle::updated

Definition at line 226 of file lm_state.h.


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