Romanian 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 es .NET-Entwicklern ermöglicht, Text aus Bildern und PDF-Dokumenten in 126 Sprachen, einschließlich Rumänisch, 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.Romanian

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

  • Rumänisch
  • RomanianBest
  • RomanianFast

Download

Rumänisches Sprachpaket style='white-space:default'>[limba română]

Installation

Das erste, was wir tun müssen, ist, unser Rumänisch OCR-Paket in Ihr .NET-Projekt zu installieren.

Install-Package IronOCR.Languages.Romanian

Beispielcode

Dieses C#-Beispiel liest rumänischen Text aus einem Bild oder PDF-Dokument.

// Ensure you have installed the Romanian OCR package using the following NuGet command:
// PM> Install-Package IronOCR.Languages.Romanian

using IronOcr;

var Ocr = new IronTesseract();
Ocr.Language = OcrLanguage.Romanian;

using (var Input = new OcrInput(@"images\Romanian.png")) 
{
    // Perform OCR on the input image, and store the result
    var Result = Ocr.Read(Input);

    // Extract all recognized text from the OCR result
    var AllText = Result.Text;

    // Display the recognized text
    Console.WriteLine(AllText);
}
// Ensure you have installed the Romanian OCR package using the following NuGet command:
// PM> Install-Package IronOCR.Languages.Romanian

using IronOcr;

var Ocr = new IronTesseract();
Ocr.Language = OcrLanguage.Romanian;

using (var Input = new OcrInput(@"images\Romanian.png")) 
{
    // Perform OCR on the input image, and store the result
    var Result = Ocr.Read(Input);

    // Extract all recognized text from the OCR result
    var AllText = Result.Text;

    // Display the recognized text
    Console.WriteLine(AllText);
}
' Ensure you have installed the Romanian OCR package using the following NuGet command:
' PM> Install-Package IronOCR.Languages.Romanian

Imports IronOcr

Private Ocr = New IronTesseract()
Ocr.Language = OcrLanguage.Romanian

Using Input = New OcrInput("images\Romanian.png")
	' Perform OCR on the input image, and store the result
	Dim Result = Ocr.Read(Input)

	' Extract all recognized text from the OCR result
	Dim AllText = Result.Text

	' Display the recognized text
	Console.WriteLine(AllText)
End Using
$vbLabelText   $csharpLabel

Der obige Code zeigt, wie man IronOCR einrichtet, um Text in Rumänisch aus einer Bilddatei zu lesen. IronTesseract() initialisiert eine neue OCR-Engine-Instanz, und OcrInput() lädt das Bild zur Verarbeitung. Die Read()-Methode führt die OCR-Operation durch. Schließlich wird der erkannte Text in der AllText-Variablen gespeichert, die dann in der Konsole ausgegeben wird. Denken Sie daran, "images\Romanian.png" durch den Pfad zu Ihrer Bilddatei zu ersetzen.