Hungarian OCR in C# and .NET

This article was translated from English: Does it need improvement?
Translated
View the article in English
Other versions of this document:

IronOCR ist eine C#-Softwarekomponente, die .NET-Entwicklern ermöglicht, Text aus Bildern und PDF-Dokumenten in 126 Sprachen, einschließlich Ungarisch, zu lesen.

Es ist eine erweiterte Abspaltung von Tesseract, die exklusiv für .NET-Entwickler entwickelt wurde und regelmäßig andere Tesseract-Engines sowohl in Bezug auf Geschwindigkeit als auch Genauigkeit übertrifft.

Inhalt von IronOcr.Languages.Hungarian

Dieses Paket enthält 52 OCR-Sprachen für .NET:

  • Ungarisch
  • HungarianBest
  • HungarianFast

Download

Ungarisches Sprachpaket style='white-space:default'>[magyar]

Installation

Das erste, was wir tun müssen, ist unser Ungarisches OCR-Paket in Ihrem .NET-Projekt zu installieren.

Install-Package IronOCR.Languages.Hungarian

Beispielcode

Dieses C#-Beispiel liest ungarischen Text aus einem Bild oder einem PDF-Dokument.

// First, ensure you have installed the Hungarian OCR language pack
// via NuGet: Install-Package IronOcr.Languages.Hungarian

using IronOcr;

var Ocr = new IronTesseract();

// Set the OCR language to Hungarian.
Ocr.Language = OcrLanguage.Hungarian;

// Load the image file containing Hungarian text
using (var Input = new OcrInput(@"images\Hungarian.png"))
{
    // Perform OCR on the input image
    var Result = Ocr.Read(Input);

    // Retrieve and store the recognized text
    var AllText = Result.Text;

    // Output the recognized text to the console (for debugging purposes)
    Console.WriteLine(AllText);
}
// First, ensure you have installed the Hungarian OCR language pack
// via NuGet: Install-Package IronOcr.Languages.Hungarian

using IronOcr;

var Ocr = new IronTesseract();

// Set the OCR language to Hungarian.
Ocr.Language = OcrLanguage.Hungarian;

// Load the image file containing Hungarian text
using (var Input = new OcrInput(@"images\Hungarian.png"))
{
    // Perform OCR on the input image
    var Result = Ocr.Read(Input);

    // Retrieve and store the recognized text
    var AllText = Result.Text;

    // Output the recognized text to the console (for debugging purposes)
    Console.WriteLine(AllText);
}
' First, ensure you have installed the Hungarian OCR language pack
' via NuGet: Install-Package IronOcr.Languages.Hungarian

Imports IronOcr

Private Ocr = New IronTesseract()

' Set the OCR language to Hungarian.
Ocr.Language = OcrLanguage.Hungarian

' Load the image file containing Hungarian text
Using Input = New OcrInput("images\Hungarian.png")
	' Perform OCR on the input image
	Dim Result = Ocr.Read(Input)

	' Retrieve and store the recognized text
	Dim AllText = Result.Text

	' Output the recognized text to the console (for debugging purposes)
	Console.WriteLine(AllText)
End Using
$vbLabelText   $csharpLabel

Dieses Code-Snippet zeigt, wie man einen OCR-Leser mit der IronOCR-Bibliothek einrichtet, um ungarischen Text aus einer angegebenen Bilddatei zu erkennen. Der extrahierte Text wird in der AllText-Variablen gespeichert und kann nach Bedarf innerhalb Ihrer Anwendung verwendet werden. Das Beispiel enthält auch eine optionale Konsolenausgabe, um die OCR-Ergebnisse während der Testphase zu überprüfen.