Czech 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-Programmierern ermöglicht, Text aus Bildern und PDF-Dokumenten in 126 Sprachen, einschließlich Tschechisch, auszulesen.

Es ist eine fortschrittliche Abspaltung von Tesseract, die ausschließlich für .NET-Entwickler gebaut wurde und regelmäßig andere Tesseract-Engines sowohl in Geschwindigkeit als auch Genauigkeit übertrifft.

Inhalt von IronOcr.Languages.Czech

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

  • Tschechisch
  • TschechischBest
  • TschechischFast

Download

Tschechisches Sprachpaket style='white-space:default'>[čeština]

Installation

Das Erste, was wir tun müssen, ist, unser Tschechisch OCR-Paket zu Ihrem .NET-Projekt zu installieren.

Install-Package IronOCR.Languages.Czech

Beispielcode

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

// Import the IronOcr namespace
using IronOcr;

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

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

        // Define the input image or PDF and perform OCR
        using (var Input = new OcrInput(@"images\Czech.png"))
        {
            // Read the input and perform OCR
            var Result = Ocr.Read(Input);

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

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

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

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

        // Define the input image or PDF and perform OCR
        using (var Input = new OcrInput(@"images\Czech.png"))
        {
            // Read the input and perform OCR
            var Result = Ocr.Read(Input);

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

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

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

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

		' Define the input image or PDF and perform OCR
		Using Input = New OcrInput("images\Czech.png")
			' Read the input and perform OCR
			Dim Result = Ocr.Read(Input)

			' Extract all recognized text
			Dim AllText = Result.Text

			' Output the recognized text to the console
			Console.WriteLine(AllText)
		End Using
	End Sub
End Class
$vbLabelText   $csharpLabel
  • Der obige Code demonstriert, wie die IronTesseract-Klasse konfiguriert und genutzt wird, um OCR auf einem gegebenen Bild oder PDF auszuführen.
  • Stellen Sie sicher, dass das IronOCR.Languages.Czech-Paket in Ihrer Umgebung installiert ist, damit der Code korrekt ausgeführt wird.
  • Die OcrInput-Klasse wird verwendet, um das Bild vom angegebenen Pfad zu laden, und Ocr.Read() führt die OCR-Operation durch.
  • Result.Text enthält das OCR-Ergebnis, welches in diesem Fall auf der Konsole ausgegeben wird.