Croatian 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 是一個 C# 軟體組件,允許 .NET 開發人員從包含克羅埃西亞文在內的 126 種語言的圖像和 PDF 文檔中讀取文本。 它是針對 .NET 開發人員專門開發的一個 Tesseract 的高級分支,在速度和準確性方面經常優於其他 Tesseract 引擎。

IronOcr.Languages.Croatian 的內容

此包包含對 .NET 49 種 OCR 語言的支持,包括:

  • 克羅埃西亞文
  • 克羅埃西亞文最佳版
  • 克羅埃西亞文快速版

下載

克羅埃西亞語言包 style='white-space:default'>[hrvatski jezik]

安裝

第一步是使用 NuGet 將 克羅埃西亞文 OCR 包安裝到您的 .NET 專案中。

Install-Package IronOCR.Languages.Croatian

代碼示例

此 C# 代碼範例從圖像或 PDF 文檔中讀取克羅埃西亞文文本。

// Add the required namespace for IronOCR
using IronOcr;

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

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

        // Define the input image or PDF containing Croatian text
        using (var Input = new OcrInput(@"images\Croatian.png"))
        {
            // Perform OCR on the input
            var Result = Ocr.Read(Input);

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

            // Output the recognized text to the console
            System.Console.WriteLine(AllText);
        }
    }
}
// Add the required namespace for IronOCR
using IronOcr;

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

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

        // Define the input image or PDF containing Croatian text
        using (var Input = new OcrInput(@"images\Croatian.png"))
        {
            // Perform OCR on the input
            var Result = Ocr.Read(Input);

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

            // Output the recognized text to the console
            System.Console.WriteLine(AllText);
        }
    }
}
' Add the required namespace for IronOCR
Imports IronOcr

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

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

		' Define the input image or PDF containing Croatian text
		Using Input = New OcrInput("images\Croatian.png")
			' Perform OCR on the input
			Dim Result = Ocr.Read(Input)

			' Extract all recognized text
			Dim AllText = Result.Text

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

解釋

  • IronTesseract:這是用於執行 OCR 操作的主要類別。 它從圖像或 PDF 中讀取文本並支持多種語言。
  • OcrInput:表示 OCR 的輸入來源,可以是圖像或 PDF 文件。
  • Ocr.Read:對指定的輸入執行 OCR 過程。
  • Result.Text:包含從輸入中提取的文本,然後打印到控制台中。