Uzbek 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 Usbekisch, 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.Uzbek

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

  • Usbekisch
  • UsbekischBest
  • UsbekischFast
  • UsbekischCyrillic
  • UsbekischCyrillicBest
  • UsbekischCyrillicFast

Download

Usbekisches Sprachpaket style='white-space:default'>[O‘zbek]

Installation

Zuerst müssen wir unser Usbekisches OCR-Paket in Ihr .NET-Projekt installieren.

PM> Install-Package IronOCR.Languages.Uzbek

Beispielcode

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

// Ensure you have installed the Uzbek language package for IronOCR
// PM> Install-Package IronOcr.Languages.Uzbek

using IronOcr;

namespace UzbekOcrExample
{
    class Program
    {
        static void Main(string[] args)
        {
            // Initialize the IronTesseract object
            var Ocr = new IronTesseract();

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

            // Specify the file path of the image or PDF containing Uzbek text
            using (var Input = new OcrInput(@"images\Uzbek.png"))
            {
                // Perform OCR on 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 to the console
                Console.WriteLine(AllText);
            }
        }
    }
}
// Ensure you have installed the Uzbek language package for IronOCR
// PM> Install-Package IronOcr.Languages.Uzbek

using IronOcr;

namespace UzbekOcrExample
{
    class Program
    {
        static void Main(string[] args)
        {
            // Initialize the IronTesseract object
            var Ocr = new IronTesseract();

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

            // Specify the file path of the image or PDF containing Uzbek text
            using (var Input = new OcrInput(@"images\Uzbek.png"))
            {
                // Perform OCR on 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 to the console
                Console.WriteLine(AllText);
            }
        }
    }
}
' Ensure you have installed the Uzbek language package for IronOCR
' PM> Install-Package IronOcr.Languages.Uzbek

Imports IronOcr

Namespace UzbekOcrExample
	Friend Class Program
		Shared Sub Main(ByVal args() As String)
			' Initialize the IronTesseract object
			Dim Ocr = New IronTesseract()

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

			' Specify the file path of the image or PDF containing Uzbek text
			Using Input = New OcrInput("images\Uzbek.png")
				' Perform OCR on 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 to the console
				Console.WriteLine(AllText)
			End Using
		End Sub
	End Class
End Namespace
$vbLabelText   $csharpLabel