Sundanese 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 Sundanesisch, 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.Sundanese

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

  • Sundanesisch
  • SundaneseBest
  • SundaneseFast

Download

Sundanese Sprachpaket style='white-space:default'>[Basa Sunda]

Installation

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

Install-Package IronOCR.Languages.Sundanese

Beispielcode

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

// Import the IronOcr namespace
using IronOcr;

class Program
{
    static void Main()
    {
        // Create a new instance of the IronTesseract class
        var Ocr = new IronTesseract();

        // Specify the language the OCR engine should use
        Ocr.Language = OcrLanguage.Sundanese;

        // Initialize the OCR input with an image file containing Sundanese text
        using (var Input = new OcrInput(@"images\Sundanese.png"))
        {
            // Process the input and get the result
            var Result = Ocr.Read(Input);

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

            // Output the recognized text
            System.Console.WriteLine(AllText);
        }
    }
}
// Import the IronOcr namespace
using IronOcr;

class Program
{
    static void Main()
    {
        // Create a new instance of the IronTesseract class
        var Ocr = new IronTesseract();

        // Specify the language the OCR engine should use
        Ocr.Language = OcrLanguage.Sundanese;

        // Initialize the OCR input with an image file containing Sundanese text
        using (var Input = new OcrInput(@"images\Sundanese.png"))
        {
            // Process the input and get the result
            var Result = Ocr.Read(Input);

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

            // Output the recognized text
            System.Console.WriteLine(AllText);
        }
    }
}
' Import the IronOcr namespace
Imports IronOcr

Friend Class Program
	Shared Sub Main()
		' Create a new instance of the IronTesseract class
		Dim Ocr = New IronTesseract()

		' Specify the language the OCR engine should use
		Ocr.Language = OcrLanguage.Sundanese

		' Initialize the OCR input with an image file containing Sundanese text
		Using Input = New OcrInput("images\Sundanese.png")
			' Process the input and get the result
			Dim Result = Ocr.Read(Input)

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

			' Output the recognized text
			System.Console.WriteLine(AllText)
		End Using
	End Sub
End Class
$vbLabelText   $csharpLabel

Erklärung

  • Zuerst importieren wir den IronOcr-Namensraum, um seine OCR-Funktionalität zu nutzen.
  • Eine Instanz von IronTesseract wird erstellt, die als unser Haupt-OCR-Engine fungiert.
  • Wir setzen die Language-Eigenschaft auf OcrLanguage.Sundanese, um anzugeben, dass die Engine Sundanesischen Text lesen soll.
  • Wir erstellen ein OcrInput-Objekt, um die Bilddateiquelle für unsere OCR-Engine anzugeben.
  • Die Read-Methode verarbeitet die Eingabe und versucht, Text zu erkennen.
  • Der erkannte Text wird in der Variablen AllText gespeichert und anschließend in der Konsole ausgegeben.

Dieses Setup ermöglicht die robuste Erkennung sundanesischer Sprachtexte aus Bildern mit der IronOCR-Bibliothek in einer .NET-Umgebung.