DEV Community

IronSoftware
IronSoftware

Posted on • Originally published at ironsoftware.com

2 1

Mongolian 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 Mongolian.

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.Mongolian

This package contains 52 OCR languages for .NET:

  • Mongolian
  • MongolianBest
  • MongolianFast

Download

Mongolian Language Pack [монгол]

Installation

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

PM> Install-Package IronOCR.Languages.Mongolian

Code Example

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

C#:

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

VB:

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

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay