Swahili OCR in C# and .NET

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

Andere Versionen dieses Dokuments

IronOCR ist eine C#-Softwarekomponente, die es .NET-Entwicklern ermöglicht, Text aus Bildern und PDF-Dokumenten in 126 Sprachen, einschließlich Swahili, zu lesen. Es ist eine fortgeschrittene Abzweigung von Tesseract, die exklusiv für .NET-Entwickler entwickelt wurde und regelmäßig andere Tesseract-Engines sowohl in Geschwindigkeit als auch in Genauigkeit übertrifft.

Inhalt von IronOcr.Languages.Swahili

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

  • Swahili
  • SwahiliBest
  • SwahiliFast

Download

Swahili Sprachpaket [Kiswahili]

Installation

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

Install-Package IronOCR.Languages.Swahili

Beispielcode

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

using IronOcr;

var Ocr = new IronTesseract();

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

// Create an OCR input for the image or PDF file
using (var Input = new OcrInput(@"images\Swahili.png"))
{
    // Perform OCR on the input image
    var Result = Ocr.Read(Input);

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

    // Output the recognized text to the console (optional)
    Console.WriteLine(AllText);
}
using IronOcr;

var Ocr = new IronTesseract();

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

// Create an OCR input for the image or PDF file
using (var Input = new OcrInput(@"images\Swahili.png"))
{
    // Perform OCR on the input image
    var Result = Ocr.Read(Input);

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

    // Output the recognized text to the console (optional)
    Console.WriteLine(AllText);
}
Imports IronOcr

Private Ocr = New IronTesseract()

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

' Create an OCR input for the image or PDF file
Using Input = New OcrInput("images\Swahili.png")
	' Perform OCR on the input image
	Dim Result = Ocr.Read(Input)

	' Retrieve the recognized text
	Dim AllText = Result.Text

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

Erklärung:

  1. Nutzung des IronOcr-Namespace: Wir fügen den IronOcr-Namespace hinzu, der Klassen und Methoden für OCR-Operationen bereitstellt.

  2. OCR-Engine initialisieren: Wir erstellen eine Instanz von IronTesseract, welche die OCR-Engine ist. Wenn die Sprache auf Swahili eingestellt ist, kann sie Swahili-Text erkennen.

  3. OCR-Eingabe: Die OcrInput-Klasse wird verwendet, um die Datei (Bild oder PDF) anzugeben, aus der wir Text extrahieren möchten.

  4. OCR-Lesen: Die Read-Methode verarbeitet die Eingabe und gibt ein OcrResult-Objekt zurück, das den erkannten Text enthält.

  5. Ausgabe: Der erkannte Text wird in AllText gespeichert, das nach Bedarf verwendet werden kann. In diesem Beispiel wird es zur Demonstration auf die Konsole ausgegeben.