DEV Community

IronSoftware
IronSoftware

Posted on • Originally published at ironsoftware.com

Hindi OCR in C# and .NET

Other versions of this document:

IronOCR is a C# software component allowing .NET coders to read text from images and PDF documents in 126 language, including Hindi.

It is an advanced fork of Tesseract, built exclusively for the .NET developers and regularly outperforms other Tesseract engines for both speed and accuracy.

Contents of IronOcr.Languages.Hindi

This package contains 40 OCR languages for .NET

  • Hindi
  • HindiBest
  • HindiFast

Download

Image 1

Installation

The first thing we have to do is install our Hindi OCR package to your .NET project.

PM> Install-Package IronOCR.Languages.Hindi

Code Example

This C# code example reads Hindi text from an Image or PDF document.

C#:

//PM> Install-Package IronOcr.Languages.Hindi
using IronOcr;
var Ocr = new IronTesseract();
Ocr.Language = OcrLanguage.Hindi;
using (var Input = new OcrInput(@"images\Hindi.png"))
{
    var Result = Ocr.Read(Input);
    Var AllText =  Result.Text
}
Enter fullscreen mode Exit fullscreen mode

VB:

'PM> Install-Package IronOcr.Languages.Hindi
Imports IronOcr
Private Ocr = New IronTesseract()
Ocr.Language = OcrLanguage.Hindi
Using Input = New OcrInput("images\Hindi.png")
    Dim Result = Ocr.Read(Input)
    Dim AllText As Var = Result.Text
End Using
Enter fullscreen mode Exit fullscreen mode

Top comments (0)