-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFourCube.cpp
More file actions
553 lines (370 loc) · 10.6 KB
/
FourCube.cpp
File metadata and controls
553 lines (370 loc) · 10.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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
98
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
144
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
// This is the main DLL file.
#include "stdafx.h"
#using <system.drawing.dll>
#include "tesseract\baseapi.h"
#include "leptonica\allheaders.h"
#include "FourCube.h"
FourCube::OCR::OCR()
{
// Establish the initial state
_pAPI = NULL;
_dataPath = nullptr;
_languageCode = nullptr;
_bound = System::Drawing::Rectangle::Empty;
this->Timeout = DEFULT_TIMEOUT;
// Return
return;
}
FourCube::OCR::~OCR()
{
// Free the Tesseract API instance
if (_pAPI != NULL) {
// End the Terresact API
_pAPI->End();
// Free
delete _pAPI;
// NUll
_pAPI = NULL;
}
// Return
return;
}
System::Drawing::Rectangle ^ FourCube::OCR::Bound::get() {
return _bound;
}
void FourCube::OCR::Bound::set(System::Drawing::Rectangle ^ value) {
// Chedck the params
if (value == nullptr)
value = System::Drawing::Rectangle::Empty;
// Set the value
_bound = value;
// Return
return;
}
Bitmap ^ FourCube::OCR::BitmapToBitmap32BPP(System::Drawing::Bitmap ^ bitmap)
{
// Create the new 32BPP bitmap
Bitmap ^ bitmap32 = gcnew Bitmap(bitmap->Size.Width, bitmap->Size.Height, System::Drawing::Imaging::PixelFormat::Format24bppRgb);
// Create a Graphics from the new bitmap
Graphics ^ g = Graphics::FromImage(bitmap32);
// Render the image into the graphics
g->DrawImageUnscaled(bitmap, 0, 0);
// Free the graphics
delete g;
// Return the new bitmap
return bitmap32;
}
Pix * FourCube::OCR::BitmapToPix(System::Drawing::Bitmap ^ bitmap)
{
// First, Check the params
if (bitmap == nullptr)
throw gcnew ArgumentNullException();
// Convert the specified bitmap into a streight 32BPP bitmap
Bitmap ^ bitmap32 = BitmapToBitmap32BPP(bitmap);
if (bitmap32 == nullptr)
throw gcnew System::ArgumentException();
try {
// Create the new PIX
Pix * pPix = pixCreate(bitmap32->Width, bitmap32->Height, 32);
if (pPix == NULL)
throw gcnew System::OutOfMemoryException();
System::Drawing::Imaging::BitmapData^ bmpData;
try {
// Access the BMP data
bmpData = bitmap32->LockBits(System::Drawing::Rectangle(0, 0, bitmap32->Width, bitmap32->Height), System::Drawing::Imaging::ImageLockMode::ReadOnly, bitmap32->PixelFormat);
if (bmpData != nullptr) {
// Access the PIX data
l_uint32 * pixData = pixGetData(pPix);
if (pixData != NULL) {
// Loop over the lines (Y)
for (int y = 0; y < bitmap32->Height; y++) {
// Loop over the colums (X)
for (int x = 0; x < bitmap32->Width; x++) {
// Access the "source" pixel BYTE
BYTE * pSource = (((BYTE *)bmpData->Scan0.ToPointer() + (y * bmpData->Stride)) + (x * 3));
// Access the "destination" pixel 4-BYTE
l_uint32 * pDestination = (((l_uint32 *)pixData + (y * (bitmap32->Width * 4))) + (x * 4));
// Set the value
*pDestination = (UINT)((pSource[0] << 24) | (pSource[1] << 16) | (pSource[2] << 8) | 255);
}
}
// Return
return pPix;
}
}
}
catch (...) {
// Free any Pix
if (pPix != NULL) {
pixDestroy(&pPix);
pPix = NULL;
}
}
finally {
// Unlock the bitmap data
if (bmpData != nullptr)
bitmap32->UnlockBits(bmpData);
}
}
finally
{
// Cleaup the bitmap
if (bitmap32 != nullptr)
delete bitmap;
}
// Return
return NULL;
}
String^ FourCube::OCR::Process(Pix * pPix)
{
// Check the params
if (pPix == NULL)
throw gcnew System::ArgumentNullException();
// Check the state
if (_pAPI == NULL)
throw gcnew System::NullReferenceException();
// The result text
char * pText = NULL;
try {
// Set the image to be processed
_pAPI->SetImage(pPix);
// Establish the processing area
if ((_bound == System::Drawing::Rectangle::Empty) || (_bound->IsEmpty == true))
_pAPI->SetRectangle(0, 0, pPix->w, pPix->h);
else
_pAPI->SetRectangle(_bound->X, _bound->Y, _bound->Width, _bound->Height);
// Return the result string
return gcnew String(_pAPI->GetUTF8Text());
}
finally {
// Clear the API state
_pAPI->Clear();
}
// Return
return nullptr;
}
List<FourCube::Extract ^>^ FourCube::OCR::Extract(Pix * pPix, FourCube::ExtractType type)
{
// Check the params
if (pPix == NULL)
throw gcnew System::ArgumentNullException();
// Check the state
if (_pAPI == NULL)
throw gcnew System::NullReferenceException();
// The result collection
List<FourCube::Extract ^>^ res = gcnew List<FourCube::Extract ^>();
try {
tesseract::PageIteratorLevel level = tesseract::RIL_WORD;
// Set the image to be processed
_pAPI->SetImage(pPix);
// Establish the processing area
if ((_bound == System::Drawing::Rectangle::Empty) || (_bound->IsEmpty == true))
_pAPI->SetRectangle(0, 0, pPix->w, pPix->h);
else
_pAPI->SetRectangle(_bound->X, _bound->Y, _bound->Width, _bound->Height);
// Recognize the image
_pAPI->Recognize(0);
// Establish the page-level-iterator
switch (type)
{
case FourCube::ExtractType::Block: level = tesseract::RIL_BLOCK; break;
case FourCube::ExtractType::Paragraph: level = tesseract::RIL_PARA; break;
case FourCube::ExtractType::Symbol: level = tesseract::RIL_SYMBOL; break;
case FourCube::ExtractType::Line: level = tesseract::RIL_TEXTLINE; break;
case FourCube::ExtractType::Word: level = tesseract::RIL_WORD; break;
default:
break;
}
// Access the iterator
tesseract::ResultIterator * pIterator = _pAPI->GetIterator();
if (pIterator != NULL) {
do {
// Access the text
const char * pText = pIterator->GetUTF8Text(level);
// Access the confidence
float confidence = pIterator->Confidence(level);
// Access the bounding rectangle
int x1, y1, x2, y2;
pIterator->BoundingBox(level, &x1, &y1, &x2, &y2);
// Build an extract
FourCube::Extract ^ extract = gcnew FourCube::Extract();
// Setup the extract
extract->Text = gcnew String(pText);
extract->Confidence = confidence;
extract->Bound = gcnew System::Drawing::Rectangle(x1, y1, (x2 - x1), (y2 - y1));
extract->Type = type;
// Add the extract
res->Add(extract);
}
while (pIterator->Next(level) == true);
}
}
finally {
// Clear the API state
_pAPI->Clear();
}
// Return
return res;
}
FourCube::OCR^ FourCube::OCR::Create(String^ dataPath, String^ languageCode)
{
// Check the params
if (String::IsNullOrEmpty(dataPath) == true)
dataPath = nullptr;
if (String::IsNullOrEmpty(languageCode) == true)
languageCode = nullptr;
// Establish the default dataPath value
if (dataPath == nullptr)
dataPath = System::IO::Path::Combine(System::AppDomain::CurrentDomain->BaseDirectory, "data\\");
// Establish the default languageCode value
if (languageCode == nullptr)
languageCode = "eng";
// Create a new instance of the OCR
OCR^ ocr = gcnew OCR();
// Create the instance of the Tesseract base API
ocr->_pAPI = new tesseract::TessBaseAPI();
// Check the API
if (ocr->_pAPI == NULL)
throw gcnew System::InsufficientMemoryException();
// Set the parameters (for possible future use)
ocr->_dataPath = dataPath;
ocr->_languageCode = languageCode;
// Create the params
IntPtr pDataPath = Marshal::StringToHGlobalAnsi(dataPath);
IntPtr pLanguageCode = Marshal::StringToHGlobalAnsi(languageCode);
// Init the Tesseract API instance
int status = ocr->_pAPI->Init((char *)pDataPath.ToPointer(), (char *)pLanguageCode.ToPointer());
// If the initialization failed, free up all the resources
if (status != 0) {
// Free the Tesseract API
delete ocr->_pAPI;
// NULL the ocr instance
ocr = nullptr;
}
// Free the params
Marshal::FreeHGlobal(pDataPath);
Marshal::FreeHGlobal(pLanguageCode);
// Return
return ocr;
}
String^ FourCube::OCR::ProcessAll(String^ filename)
{
// Check the params
if (filename == nullptr)
throw gcnew System::ArgumentNullException();
// Check the state
if (_pAPI == NULL)
throw gcnew System::NullReferenceException();
// Create a STRING to store the restulant text
STRING * pResult = new STRING();
// Create the params
IntPtr pFilename = Marshal::StringToHGlobalAnsi(filename);
try {
// Process the page
if (_pAPI->ProcessPages((char *)pFilename.ToPointer(), NULL, this->Timeout, pResult) == true) {
// Return the result string
return gcnew String(pResult->string());
}
}
finally {
// Free the result STRING
if (pResult != NULL)
delete pResult;
// Free the filename
Marshal::FreeHGlobal(pFilename);
}
// Return
return nullptr;
}
String^ FourCube::OCR::Process(String^ filename)
{
// Check the params
if (filename == nullptr)
throw gcnew System::ArgumentNullException();
// Check the state
if (_pAPI == NULL)
throw gcnew System::NullReferenceException();
// Create the params
IntPtr pFilename = Marshal::StringToHGlobalAnsi(filename);
// Open input image with leptonica library
Pix * image = pixRead((char *)pFilename.ToPointer());
try {
// Process the PIX
return Process(image);
}
finally {
// Destroy the image
pixDestroy(&image);
// Free the filename
Marshal::FreeHGlobal(pFilename);
}
// Return
return nullptr;
}
String^ FourCube::OCR::Process(Bitmap^ image)
{
// Check the params
if (image == nullptr)
throw gcnew System::ArgumentNullException();
// Check the state
if (_pAPI == NULL)
throw gcnew System::NullReferenceException();
// Convert the image to a PIX
Pix * pPix = BitmapToPix(image);
try {
// Process the PIX
return Process(image);
}
finally {
// Destroy the image
pixDestroy(&pPix);
}
// Return
return nullptr;
}
List<FourCube::Extract ^>^ FourCube::OCR::Extract(String ^ filename, FourCube::ExtractType type)
{
// Check the params
if (filename == nullptr)
throw gcnew System::ArgumentNullException();
// Check the state
if (_pAPI == NULL)
throw gcnew System::NullReferenceException();
// Create the params
IntPtr pFilename = Marshal::StringToHGlobalAnsi(filename);
// Open input image with leptonica library
Pix * image = pixRead((char *)pFilename.ToPointer());
try {
// Extract the results
return Extract(image, type);
}
finally {
// Destroy the image
pixDestroy(&image);
// Free the filename
Marshal::FreeHGlobal(pFilename);
}
// Return
return gcnew List<FourCube::Extract ^>();
}
List<FourCube::Extract ^>^ FourCube::OCR::Extract(Bitmap ^ image, FourCube::ExtractType type)
{
// Check the params
if (image == nullptr)
throw gcnew System::ArgumentNullException();
// Check the state
if (_pAPI == NULL)
throw gcnew System::NullReferenceException();
// Convert the image to a PIX
Pix * pPix = BitmapToPix(image);
try {
// Extract the results
return Extract(image, type);
}
finally {
// Destroy the image
pixDestroy(&pPix);
}
// Return
return gcnew List<FourCube::Extract ^>();
}