tesseract  4.00.00dev
params_training_featdef.h
Go to the documentation of this file.
1 // File: params_training_featdef.h
3 // Description: Feature definitions for params training.
4 // Author: Rika Antonova
5 // Created: Mon Nov 28 11:26:42 PDT 2011
6 //
7 // (C) Copyright 2011, Google Inc.
8 // Licensed under the Apache License, Version 2.0 (the "License");
9 // you may not use this file except in compliance with the License.
10 // You may obtain a copy of the License at
11 // http://www.apache.org/licenses/LICENSE-2.0
12 // Unless required by applicable law or agreed to in writing, software
13 // distributed under the License is distributed on an "AS IS" BASIS,
14 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 // See the License for the specific language governing permissions and
16 // limitations under the License.
17 //
19 
20 #ifndef TESSERACT_WORDREC_PARAMS_TRAINING_FEATDEF_H_
21 #define TESSERACT_WORDREC_PARAMS_TRAINING_FEATDEF_H_
22 
23 #include "genericvector.h"
24 #include "strngs.h"
25 
26 namespace tesseract {
27 
28 // Maximum number of unichars in the small and medium sized words
29 static const int kMaxSmallWordUnichars = 3;
30 static const int kMaxMediumWordUnichars = 6;
31 
32 // Raw features extracted from a single OCR hypothesis.
33 // The features are normalized (by outline length or number of unichars as
34 // appropriate) real-valued quantities with unbounded range and
35 // unknown distribution.
36 // Normalization / binarization of these features is done at a later stage.
37 // Note: when adding new fields to this enum make sure to modify
38 // kParamsTrainingFeatureTypeName
40  // Digits
44  // Number or pattern (NUMBER_PERM, USER_PATTERN_PERM)
48  // Document word (DOC_DAWG_PERM)
52  // Word (SYSTEM_DAWG_PERM, USER_DAWG_PERM, COMPOUND_PERM)
56  // Frequent word (FREQ_DAWG_PERM)
69 
71 };
72 
73 static const char * const kParamsTrainingFeatureTypeName[] = {
74  "PTRAIN_DIGITS_SHORT", // 0
75  "PTRAIN_DIGITS_MED", // 1
76  "PTRAIN_DIGITS_LONG", // 2
77  "PTRAIN_NUM_SHORT", // 3
78  "PTRAIN_NUM_MED", // 4
79  "PTRAIN_NUM_LONG", // 5
80  "PTRAIN_DOC_SHORT", // 6
81  "PTRAIN_DOC_MED", // 7
82  "PTRAIN_DOC_LONG", // 8
83  "PTRAIN_DICT_SHORT", // 9
84  "PTRAIN_DICT_MED", // 10
85  "PTRAIN_DICT_LONG", // 11
86  "PTRAIN_FREQ_SHORT", // 12
87  "PTRAIN_FREQ_MED", // 13
88  "PTRAIN_FREQ_LONG", // 14
89  "PTRAIN_SHAPE_COST_PER_CHAR", // 15
90  "PTRAIN_NGRAM_COST_PER_CHAR", // 16
91  "PTRAIN_NUM_BAD_PUNC", // 17
92  "PTRAIN_NUM_BAD_CASE", // 18
93  "PTRAIN_XHEIGHT_CONSISTENCY", // 19
94  "PTRAIN_NUM_BAD_CHAR_TYPE", // 20
95  "PTRAIN_NUM_BAD_SPACING", // 21
96  "PTRAIN_NUM_BAD_FONT", // 22
97  "PTRAIN_RATING_PER_CHAR", // 23
98 };
99 
100 // Returns the index of the given feature (by name),
101 // or -1 meaning the feature is unknown.
102 int ParamsTrainingFeatureByName(const char *name);
103 
104 
105 // Entry with features extracted from a single OCR hypothesis for a word.
108  memset(features, 0, sizeof(float) * PTRAIN_NUM_FEATURE_TYPES);
109  }
111  memcpy(features, other.features,
112  sizeof(float) * PTRAIN_NUM_FEATURE_TYPES);
113  str = other.str;
114  cost = other.cost;
115  }
117  STRING str; // string corresponding to word hypothesis (for debugging)
118  float cost; // path cost computed by segsearch
119 };
120 
121 // A list of hypotheses explored during one run of segmentation search.
123 
124 // A bundle that accumulates all of the hypothesis lists explored during all
125 // of the runs of segmentation search on a word (e.g. a list of hypotheses
126 // explored on PASS1, PASS2, fix xheight pass, etc).
128  public:
130  // Starts a new hypothesis list.
131  // Should be called at the beginning of a new run of the segmentation search.
133  hyp_list_vec.push_back(ParamsTrainingHypothesisList());
134  }
135  // Adds a new ParamsTrainingHypothesis to the current hypothesis list
136  // and returns the reference to the newly added entry.
138  const ParamsTrainingHypothesis &other) {
139  if (hyp_list_vec.empty()) StartHypothesisList();
140  hyp_list_vec.back().push_back(ParamsTrainingHypothesis(other));
141  return hyp_list_vec.back().back();
142  }
143 
145 };
146 
147 } // namespace tesseract
148 
149 #endif // TESSERACT_WORDREC_PARAMS_TRAINING_FEATDEF_H_
float features[PTRAIN_NUM_FEATURE_TYPES]
Definition: strngs.h:45
int ParamsTrainingFeatureByName(const char *name)
ParamsTrainingHypothesis & AddHypothesis(const ParamsTrainingHypothesis &other)
GenericVector< ParamsTrainingHypothesisList > hyp_list_vec
GenericVector< ParamsTrainingHypothesis > ParamsTrainingHypothesisList
ParamsTrainingHypothesis(const ParamsTrainingHypothesis &other)