Alphabet éthiopique OCR en C# et .NET

This article was translated from English: Does it need improvement?
Translated
View the article in English

126 langues supplémentaires

IronOCR est un composant logiciel C# permettant aux codeurs .NET de lire du texte à partir d'images et de documents PDF dans 126 langues, y compris l'alphabet éthiopique.

Il s'agit d'une version avancée de Tesseract, conçue exclusivement pour les développeurs .NET, qui surpasse régulièrement les autres moteurs Tesseract en termes de vitesse et de précision.

Contenu de IronOCR.Languages.Ethiopic

Ce paquet contient 73 langages OCR pour .NET :

  • Alphabet éthiopique
  • Alphabet éthiopiqueLe meilleur
  • Alphabet éthiopiqueRapide

Télécharger

Alphabet éthiopien Pack linguistique [Ge'ez]

  • Télécharger en tant que Zip
  • Installer avec NuGet

Installation

La première chose à faire est d'installer notre paquetage Alphabet éthiopique OCR dans votre projet .NET.

PM> Installer-Package IronOCR.Languages.Ethiopic (en anglais)

Exemple de code

Cet exemple de code C# lit le texte de l'alphabet éthiopique à partir d'une image ou d'un document PDF.

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

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

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

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