tesseract  4.00.00dev
ratngs.h File Reference
#include <assert.h>
#include "clst.h"
#include "elst.h"
#include "fontinfo.h"
#include "genericvector.h"
#include "matrix.h"
#include "unichar.h"
#include "unicharset.h"
#include "werd.h"

Go to the source code of this file.

Classes

class  BLOB_CHOICE
 
class  WERD_CHOICE
 

Namespaces

 tesseract
 

Typedefs

typedef GenericVector< BLOB_CHOICE_LIST * > BLOB_CHOICE_LIST_VECTOR
 

Enumerations

enum  BlobChoiceClassifier {
  BCC_STATIC_CLASSIFIER, BCC_ADAPTED_CLASSIFIER, BCC_SPECKLE_CLASSIFIER, BCC_AMBIG,
  BCC_FAKE
}
 
enum  PermuterType {
  NO_PERM, PUNC_PERM, TOP_CHOICE_PERM, LOWER_CASE_PERM,
  UPPER_CASE_PERM, NGRAM_PERM, NUMBER_PERM, USER_PATTERN_PERM,
  SYSTEM_DAWG_PERM, DOC_DAWG_PERM, USER_DAWG_PERM, FREQ_DAWG_PERM,
  COMPOUND_PERM, NUM_PERMUTER_TYPES
}
 
enum  tesseract::ScriptPos { tesseract::SP_NORMAL, tesseract::SP_SUBSCRIPT, tesseract::SP_SUPERSCRIPT, tesseract::SP_DROPCAP }
 

Functions

BLOB_CHOICEFindMatchingChoice (UNICHAR_ID char_id, BLOB_CHOICE_LIST *bc_list)
 
const char * tesseract::ScriptPosToString (enum ScriptPos script_pos)
 
bool EqualIgnoringCaseAndTerminalPunct (const WERD_CHOICE &word1, const WERD_CHOICE &word2)
 
void print_ratings_list (const char *msg, BLOB_CHOICE_LIST *ratings, const UNICHARSET &current_unicharset)
 

Typedef Documentation

◆ BLOB_CHOICE_LIST_VECTOR

typedef GenericVector<BLOB_CHOICE_LIST *> BLOB_CHOICE_LIST_VECTOR

Definition at line 642 of file ratngs.h.

Enumeration Type Documentation

◆ BlobChoiceClassifier

Enumerator
BCC_STATIC_CLASSIFIER 
BCC_ADAPTED_CLASSIFIER 
BCC_SPECKLE_CLASSIFIER 
BCC_AMBIG 
BCC_FAKE 

Definition at line 40 of file ratngs.h.

40  {
41  BCC_STATIC_CLASSIFIER, // From the char_norm classifier.
42  BCC_ADAPTED_CLASSIFIER, // From the adaptive classifier.
43  BCC_SPECKLE_CLASSIFIER, // Backup for failed classification.
44  BCC_AMBIG, // Generated by ambiguity detection.
45  BCC_FAKE, // From some other process.
46 };

◆ PermuterType

Enumerator
NO_PERM 
PUNC_PERM 
TOP_CHOICE_PERM 
LOWER_CASE_PERM 
UPPER_CASE_PERM 
NGRAM_PERM 
NUMBER_PERM 
USER_PATTERN_PERM 
SYSTEM_DAWG_PERM 
DOC_DAWG_PERM 
USER_DAWG_PERM 
FREQ_DAWG_PERM 
COMPOUND_PERM 
NUM_PERMUTER_TYPES 

Definition at line 240 of file ratngs.h.

240  {
241  NO_PERM, // 0
242  PUNC_PERM, // 1
243  TOP_CHOICE_PERM, // 2
244  LOWER_CASE_PERM, // 3
245  UPPER_CASE_PERM, // 4
246  NGRAM_PERM, // 5
247  NUMBER_PERM, // 6
248  USER_PATTERN_PERM, // 7
249  SYSTEM_DAWG_PERM, // 8
250  DOC_DAWG_PERM, // 9
251  USER_DAWG_PERM, // 10
252  FREQ_DAWG_PERM, // 11
253  COMPOUND_PERM, // 12
254 
256 };

Function Documentation

◆ EqualIgnoringCaseAndTerminalPunct()

bool EqualIgnoringCaseAndTerminalPunct ( const WERD_CHOICE word1,
const WERD_CHOICE word2 
)

Definition at line 791 of file ratngs.cpp.

792  {
793  const UNICHARSET *uchset = word1.unicharset();
794  if (word2.unicharset() != uchset) return false;
795  int w1start, w1end;
796  word1.punct_stripped(&w1start, &w1end);
797  int w2start, w2end;
798  word2.punct_stripped(&w2start, &w2end);
799  if (w1end - w1start != w2end - w2start) return false;
800  for (int i = 0; i < w1end - w1start; i++) {
801  if (uchset->to_lower(word1.unichar_id(w1start + i)) !=
802  uchset->to_lower(word2.unichar_id(w2start + i))) {
803  return false;
804  }
805  }
806  return true;
807 }
UNICHAR_ID unichar_id(int index) const
Definition: ratngs.h:313
UNICHAR_ID to_lower(UNICHAR_ID unichar_id) const
Definition: unicharset.h:664
const UNICHARSET * unicharset() const
Definition: ratngs.h:298
void punct_stripped(int *start_core, int *end_core) const
Definition: ratngs.cpp:361

◆ FindMatchingChoice()

BLOB_CHOICE* FindMatchingChoice ( UNICHAR_ID  char_id,
BLOB_CHOICE_LIST *  bc_list 
)

Definition at line 160 of file ratngs.cpp.

161  {
162  // Find the corresponding best BLOB_CHOICE.
163  BLOB_CHOICE_IT choice_it(bc_list);
164  for (choice_it.mark_cycle_pt(); !choice_it.cycled_list();
165  choice_it.forward()) {
166  BLOB_CHOICE* choice = choice_it.data();
167  if (choice->unichar_id() == char_id) {
168  return choice;
169  }
170  }
171  return NULL;
172 }
UNICHAR_ID unichar_id() const
Definition: ratngs.h:76

◆ print_ratings_list()

void print_ratings_list ( const char *  msg,
BLOB_CHOICE_LIST *  ratings,
const UNICHARSET current_unicharset 
)

print_ratings_list

Send all the ratings out to the logfile.

Parameters
msgintro message
ratingslist of ratings
current_unicharsetunicharset that can be used for id-to-unichar conversion

Definition at line 819 of file ratngs.cpp.

821  {
822  if (ratings->length() == 0) {
823  tprintf("%s:<none>\n", msg);
824  return;
825  }
826  if (*msg != '\0') {
827  tprintf("%s\n", msg);
828  }
829  BLOB_CHOICE_IT c_it;
830  c_it.set_to_list(ratings);
831  for (c_it.mark_cycle_pt(); !c_it.cycled_list(); c_it.forward()) {
832  c_it.data()->print(&current_unicharset);
833  if (!c_it.at_last()) tprintf("\n");
834  }
835  tprintf("\n");
836  fflush(stdout);
837 }
#define tprintf(...)
Definition: tprintf.h:31