Bosnian 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.Bosnian 的內容

此套件包含 .NET 的46種 OCR 語言:

  • 波斯尼亞語
  • 波斯尼亞語最佳
  • 波斯尼亞語快速

下載

波斯尼亞語語言包 style='white-space:default'>[bosanski jezik]

安裝

首先我們要做的是在您的 .NET 專案中安裝我們的 波斯尼亞語 OCR 方案。

Install-Package IronOCR.Languages.Bosnian

代碼示例

這個 C# 代碼示例從圖像或 PDF 文檔中讀取波斯尼亞語文本。

// Ensure the IronOCR library is included
using IronOcr;

class Program
{
    static void Main()
    {
        // Initialize an instance of IronTesseract
        var Ocr = new IronTesseract();

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

        // Use OcrInput to specify the input file path for OCR
        using (var Input = new OcrInput(@"images\Bosnian.png"))
        {
            // Perform OCR on the input image or PDF
            var Result = Ocr.Read(Input);

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

            // Output the recognized text to the console
            Console.WriteLine(AllText);
        }
    }
}
// Ensure the IronOCR library is included
using IronOcr;

class Program
{
    static void Main()
    {
        // Initialize an instance of IronTesseract
        var Ocr = new IronTesseract();

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

        // Use OcrInput to specify the input file path for OCR
        using (var Input = new OcrInput(@"images\Bosnian.png"))
        {
            // Perform OCR on the input image or PDF
            var Result = Ocr.Read(Input);

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

            // Output the recognized text to the console
            Console.WriteLine(AllText);
        }
    }
}
' Ensure the IronOCR library is included
Imports IronOcr

Friend Class Program
	Shared Sub Main()
		' Initialize an instance of IronTesseract
		Dim Ocr = New IronTesseract()

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

		' Use OcrInput to specify the input file path for OCR
		Using Input = New OcrInput("images\Bosnian.png")
			' Perform OCR on the input image or PDF
			Dim Result = Ocr.Read(Input)

			' Extract the 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
$vbLabelText   $csharpLabel
  • 上述代碼演示了如何使用 IronOCR 對波斯尼亞語文本圖像進行OCR。
  • 使用 IronTesseract 類來配置和執行OCR任務。
  • 使用 OcrInput 類來指定要從中提取文本的輸入圖像文件。
  • 最後,將識別到的文本打印到控制台。