Text Recognition¶
¶
TextRecognizer
¶
TextRecognizer can be used as to detect meaningful optical characters from identity cards.
__init__(self, image_path, east_path, min_confidence=0.5, width=320, height=320, padding=0.0, lang='eng')
special
¶
Returns a TextRecognizer instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image_path |
str |
Path to input image on file system. |
required |
east_path |
str |
Path to input EAST text detector on file system. |
required |
min_confidence |
float |
Minimum probability required to inspect a region. |
0.5 |
width |
int |
Nearest multiple of 32 for resized width. |
320 |
height |
int |
Nearest multiple of 32 for resized height. |
320 |
padding |
float |
Amount of padding to add to each border of ROI. |
0.0 |
lang |
str |
Language for tessaract. |
'eng' |
Source code in mocr/text_recognition.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|
boxes(self, scores, geometry)
¶
Returns boxes after decoding predictions and then applying non-maxima suppression.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
scores |
List |
Probabilities. |
required |
geometry |
List |
Geometrical data. |
required |
Returns:
Type | Description |
---|---|
List |
boxes (array): Overlapping bounding boxes. |
Source code in mocr/text_recognition.py
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
|
decode_predictions(self, scores, geometry)
¶
Grab the number of rows and columns from the scores volume, then initialize our set of bounding box rectangles and corresponding confidence scores.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
scores |
List |
Probabilities. |
required |
geometry |
List |
Geometrical data. |
required |
Returns:
Type | Description |
---|---|
Tuple[List, List] |
rects (array): Bounding boxes. confidences (array): Associated confidences. |
Source code in mocr/text_recognition.py
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
|
geometry_score(self, east_path, resized_image)
¶
Creates scores and geometry to use in predictions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
east_path |
str |
EAST text detector path. |
required |
resized_image |
List[bytes] |
Resized image data. |
required |
Returns:
Type | Description |
---|---|
Tuple[List, List] |
scores (array): Probabilities. geometry (array): Geometrical data. |
Source code in mocr/text_recognition.py
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
|
get_results(self, boxes, image, ratio_height, ratio_width)
¶
Returns the list of sorted boxes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
boxes |
List |
Overlapping bounding boxes. |
required |
image |
bytes |
Loaded image data. |
required |
ratio_height |
float |
Resize ratio of height. |
required |
ratio_width |
float |
Resize ratio of width. |
required |
Returns:
Type | Description |
---|---|
List |
results (array): Texts with bounding box coordinates from top to bottom. |
Source code in mocr/text_recognition.py
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 |
|
load_image(self)
¶
Load the input image and grab the image dimensions.
Returns:
Type | Description |
---|---|
Tuple[bytearray, int, int] |
(original, original_height, original_width): Tuple of image, it's height and width. |
Source code in mocr/text_recognition.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
|
resize_image(self, image, new_width, new_height)
¶
Resize the image and grab the new image dimensions. Sets the new width and height and then determine the ratio in change for both the width and height.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image |
bytes |
Loaded image data. |
required |
new_width |
int |
New width to resize. |
required |
new_height |
int |
New height to resize. |
required |
Returns:
Type | Description |
---|---|
Tuple[bytearray, int, int, int, int] |
(resized_image, ratio_height, ratio_width, resized_height, resized_width): Resized image and it's specs. |
Source code in mocr/text_recognition.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
|