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

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

This package contains 64 OCR languages for .NET:

  • Luxembourgish
  • LuxembourgishBest
  • LuxembourgishFast

Download

Luxembourgish Language Pack [Lëtzebuergesch]

Installation

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

PM> Install-Package IronOCR.Languages.Luxembourgish

Code Example

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

//PM> Install-Package IronOcr.Languages.Luxembourgish
using IronOcr;

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

var Ocr = new IronTesseract();
Ocr.Language = OcrLanguage.Luxembourgish;
using (var Input = new OcrInput(@"images\Luxembourgish.png"))
{
    var Result = Ocr.Read(Input);
    var AllText =  Result.Text;
}
'PM> Install-Package IronOcr.Languages.Luxembourgish
Imports IronOcr

Private Ocr = New IronTesseract()
Ocr.Language = OcrLanguage.Luxembourgish
Using Input = New OcrInput("images\Luxembourgish.png")
	Dim Result = Ocr.Read(Input)
	Dim AllText = Result.Text
End Using
VB   C#