Oriya 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 Oriya, 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.

Inhalte von IronOcr.Languages.Oriya

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

  • Oriya
  • OriyaBest
  • OriyaFast
  • OriyaAlphabet
  • OriyaAlphabetBest
  • OriyaAlphabetFast

Download

Oriya Language Pack style='white-space:default'>[ଓଡଆ]

Installation

Das Erste, was wir tun müssen, ist, unser Oriya-OCR-Paket in Ihr .NET-Projekt zu installieren.

Install-Package IronOCR.Languages.Oriya

Beispielcode

Dieses C#-Codebeispiel liest Oriya-Text aus einem Bild oder PDF-Dokument.

// This example demonstrates how to use the IronOCR library to perform OCR on an Oriya language image.
using IronOcr;

class Program
{
    static void Main()
    {
        // Instantiate the IronTesseract engine
        var Ocr = new IronTesseract();

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

        // Define the input file path for the OCR
        using (var Input = new OcrInput(@"images\Oriya.png"))
        {
            // Perform OCR and obtain the result
            var Result = Ocr.Read(Input);

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

            // Output the recognized text
            Console.WriteLine(AllText);
        }
    }
}
// This example demonstrates how to use the IronOCR library to perform OCR on an Oriya language image.
using IronOcr;

class Program
{
    static void Main()
    {
        // Instantiate the IronTesseract engine
        var Ocr = new IronTesseract();

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

        // Define the input file path for the OCR
        using (var Input = new OcrInput(@"images\Oriya.png"))
        {
            // Perform OCR and obtain the result
            var Result = Ocr.Read(Input);

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

            // Output the recognized text
            Console.WriteLine(AllText);
        }
    }
}
' This example demonstrates how to use the IronOCR library to perform OCR on an Oriya language image.
Imports IronOcr

Friend Class Program
	Shared Sub Main()
		' Instantiate the IronTesseract engine
		Dim Ocr = New IronTesseract()

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

		' Define the input file path for the OCR
		Using Input = New OcrInput("images\Oriya.png")
			' Perform OCR and obtain the result
			Dim Result = Ocr.Read(Input)

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

			' Output the recognized text
			Console.WriteLine(AllText)
		End Using
	End Sub
End Class
$vbLabelText   $csharpLabel
  • Das IronTesseract-Objekt wird verwendet, um OCR zu konfigurieren und durchzuführen.
  • Die Sprache für OCR wird mithilfe von OcrLanguage.Oriya auf Oriya gesetzt.
  • Das OcrInput ermöglicht es Ihnen, das Bild oder Dokument spezifizieren, aus dem der Text extrahiert werden soll.
  • Die Read()-Methode führt das OCR durch und erzeugt ein Ergebnis, aus dem der erkannte Text extrahiert und genutzt werden kann.