tesseract  3.05.02
tesseract::WordAltList Class Reference

#include <word_altlist.h>

Inheritance diagram for tesseract::WordAltList:
tesseract::AltList

Public Member Functions

 WordAltList (int max_alt)
 
 ~WordAltList ()
 
void Sort ()
 
bool Insert (char_32 *char_ptr, int cost, void *tag=NULL)
 
char_32Alt (int alt_idx)
 
void PrintDebug ()
 
- Public Member Functions inherited from tesseract::AltList
 AltList (int max_alt)
 
virtual ~AltList ()
 
int BestCost (int *best_alt) const
 
int AltCount () const
 
int AltCost (int alt_idx) const
 
double AltProb (int alt_idx) const
 
void * AltTag (int alt_idx) const
 

Additional Inherited Members

- Protected Attributes inherited from tesseract::AltList
int max_alt_
 
int alt_cnt_
 
int * alt_cost_
 
void ** alt_tag_
 

Detailed Description

Definition at line 32 of file word_altlist.h.

Constructor & Destructor Documentation

◆ WordAltList()

tesseract::WordAltList::WordAltList ( int  max_alt)
explicit

Definition at line 23 of file word_altlist.cpp.

24  : AltList(max_alt) {
25  word_alt_ = NULL;
26 }
AltList(int max_alt)
Definition: altlist.cpp:25

◆ ~WordAltList()

tesseract::WordAltList::~WordAltList ( )

Definition at line 28 of file word_altlist.cpp.

28  {
29  if (word_alt_ != NULL) {
30  for (int alt_idx = 0; alt_idx < alt_cnt_; alt_idx++) {
31  if (word_alt_[alt_idx] != NULL) {
32  delete []word_alt_[alt_idx];
33  }
34  }
35  delete []word_alt_;
36  word_alt_ = NULL;
37  }
38 }

Member Function Documentation

◆ Alt()

char_32* tesseract::WordAltList::Alt ( int  alt_idx)
inline

Definition at line 41 of file word_altlist.h.

41 { return word_alt_[alt_idx]; }

◆ Insert()

bool tesseract::WordAltList::Insert ( char_32 word_str,
int  cost,
void *  tag = NULL 
)

insert an alternate word with the specified cost and tag

Definition at line 43 of file word_altlist.cpp.

43  {
44  if (word_alt_ == NULL || alt_cost_ == NULL) {
45  word_alt_ = new char_32*[max_alt_];
46  alt_cost_ = new int[max_alt_];
47  alt_tag_ = new void *[max_alt_];
48  memset(alt_tag_, 0, max_alt_ * sizeof(*alt_tag_));
49  } else {
50  // check if alt already exists
51  for (int alt_idx = 0; alt_idx < alt_cnt_; alt_idx++) {
52  if (CubeUtils::StrCmp(word_str, word_alt_[alt_idx]) == 0) {
53  // update the cost if we have a lower one
54  if (cost < alt_cost_[alt_idx]) {
55  alt_cost_[alt_idx] = cost;
56  alt_tag_[alt_idx] = tag;
57  }
58  return true;
59  }
60  }
61  }
62 
63  // determine length of alternate
64  int len = CubeUtils::StrLen(word_str);
65 
66  word_alt_[alt_cnt_] = new char_32[len + 1];
67 
68  if (len > 0) {
69  memcpy(word_alt_[alt_cnt_], word_str, len * sizeof(*word_str));
70  }
71 
72  word_alt_[alt_cnt_][len] = 0;
73  alt_cost_[alt_cnt_] = cost;
74  alt_tag_[alt_cnt_] = tag;
75 
76  alt_cnt_++;
77 
78  return true;
79 }
void ** alt_tag_
Definition: altlist.h:57
static int StrLen(const char_32 *str)
Definition: cube_utils.cpp:54
signed int char_32
Definition: string_32.h:40
static int StrCmp(const char_32 *str1, const char_32 *str2)
Definition: cube_utils.cpp:66

◆ PrintDebug()

void tesseract::WordAltList::PrintDebug ( )

Definition at line 104 of file word_altlist.cpp.

104  {
105  for (int alt_idx = 0; alt_idx < alt_cnt_; alt_idx++) {
106  char_32 *word_32 = word_alt_[alt_idx];
107  string word_str;
108  CubeUtils::UTF32ToUTF8(word_32, &word_str);
109  int num_unichars = CubeUtils::StrLen(word_32);
110  fprintf(stderr, "Alt[%d]=%s (cost=%d, num_unichars=%d); unichars=", alt_idx,
111  word_str.c_str(), alt_cost_[alt_idx], num_unichars);
112  for (int i = 0; i < num_unichars; ++i)
113  fprintf(stderr, "%d ", word_32[i]);
114  fprintf(stderr, "\n");
115  }
116 }
static void UTF32ToUTF8(const char_32 *utf32_str, string *str)
Definition: cube_utils.cpp:272
static int StrLen(const char_32 *str)
Definition: cube_utils.cpp:54
signed int char_32
Definition: string_32.h:40

◆ Sort()

void tesseract::WordAltList::Sort ( )
virtual

sort the alternate in descending order based on the cost

Implements tesseract::AltList.

Definition at line 84 of file word_altlist.cpp.

84  {
85  for (int alt_idx = 0; alt_idx < alt_cnt_; alt_idx++) {
86  for (int alt = alt_idx + 1; alt < alt_cnt_; alt++) {
87  if (alt_cost_[alt_idx] > alt_cost_[alt]) {
88  char_32 *pchTemp = word_alt_[alt_idx];
89  word_alt_[alt_idx] = word_alt_[alt];
90  word_alt_[alt] = pchTemp;
91 
92  int temp = alt_cost_[alt_idx];
93  alt_cost_[alt_idx] = alt_cost_[alt];
94  alt_cost_[alt] = temp;
95 
96  void *tag = alt_tag_[alt_idx];
97  alt_tag_[alt_idx] = alt_tag_[alt];
98  alt_tag_[alt] = tag;
99  }
100  }
101  }
102 }
void ** alt_tag_
Definition: altlist.h:57
signed int char_32
Definition: string_32.h:40

The documentation for this class was generated from the following files: