MultiThreaded Tesseract OCR
Iron Tesseract has a C# API that allows Multithreaded OCR which can greatly improve performance on multi-core machines.ReadMultithreaded
can accept images directly, or OcrInput class instances (recommended)
using IronOcr; var Ocr = new IronTesseract(); foreach (var Result in Ocr.ReadMultithreaded("images/image1.jpg", "images/image2.jpg", "images/image3.png")) { Console.WriteLine(Result.Text); // results will come in the order the images were input }
Imports IronOcr Private Ocr = New IronTesseract() For Each Result In Ocr.ReadMultithreaded("images/image1.jpg", "images/image2.jpg", "images/image3.png") Console.WriteLine(Result.Text) ' results will come in the order the images were input Next Result
Iron Tesseract has a C# API that allows Multithreaded OCR which can greatly improve performance on multi-core machines.ReadMultithreaded
can accept images directly, or OcrInput class instances (recommended)