Tesseract 4 for .NET
IronOCR fully supports Tesseract 4
IronOCR Supports Tesseract 3, Tesseract 4 and Tesseract 5 for .Net Framework, Standard, Core, Xamarin and Mono.
using IronOcr; //.. var Ocr = new IronTesseract(); Ocr.Configuration.TesseractVersion = TesseractVersion.Tesseract4; // This is default using (var Input = new OcrInput(@"images\image.png")) { var Result = Ocr.Read(Input); Console.WriteLine(Result.Text); }
Imports IronOcr '.. Private Ocr = New IronTesseract() Ocr.Configuration.TesseractVersion = TesseractVersion.Tesseract4 ' This is default Using Input = New OcrInput("images\image.png") Dim Result = Ocr.Read(Input) Console.WriteLine(Result.Text) End Using
IronOCR fully supports Tesseract 4
IronOCR Supports Tesseract 3, Tesseract 4 and Tesseract 5 for .Net Framework, Standard, Core, Xamarin and Mono.