Belarusian OCR in C# and .NET

This article was translated from English: Does it need improvement?
Translated
View the article in English
本文件的其他版本:

IronOCR 是一個 C# 軟體元件,讓 .NET 程式設計師能夠從 126 種語言(包括白俄羅斯語)的圖片和 PDF 文件中讀取文字。

這是 Tesseract 的進階分支版本,專為 .NET 開發人員打造,無論在速度或準確度方面,其表現均經常優於其他 Tesseract 引擎。

IronOcr.Languages.Belarusian 的內容

此套件包含 55 種適用於 .NET 的 OCR 語言:

  • 白俄羅斯語
  • 白俄羅斯語最佳
  • 白俄羅斯語Fast

下載

白俄羅斯語語言套件 [беларуская мова]

安裝

我們首先必須將白俄羅斯語 OCR 套件安裝至您的 .NET 專案中。

Install-Package IronOcr.Languages.Belarusian

程式碼範例

此 C# 程式碼範例會從圖片或 PDF 文件中讀取白俄羅斯語文字。

// Import the IronOcr namespace to access OCR functionalities
using IronOcr;

class BelarusianOcrExample
{
    static void Main()
    {
        // Initialize the IronTesseract OCR engine
        var Ocr = new IronTesseract();

        // Set the language to Belarusian for optimal recognition results
        Ocr.Language = OcrLanguage.Belarusian;

        // Define the input source: Image or PDF from a path
        using (var Input = new OcrInput(@"images\Belarusian.png"))
        {
            // Perform OCR to read the text
            var Result = Ocr.Read(Input);

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

            // Output the recognized text to the console
            System.Co/nsole.WriteLine(AllText);
        }
    }
}
// Import the IronOcr namespace to access OCR functionalities
using IronOcr;

class BelarusianOcrExample
{
    static void Main()
    {
        // Initialize the IronTesseract OCR engine
        var Ocr = new IronTesseract();

        // Set the language to Belarusian for optimal recognition results
        Ocr.Language = OcrLanguage.Belarusian;

        // Define the input source: Image or PDF from a path
        using (var Input = new OcrInput(@"images\Belarusian.png"))
        {
            // Perform OCR to read the text
            var Result = Ocr.Read(Input);

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

            // Output the recognized text to the console
            System.Co/nsole.WriteLine(AllText);
        }
    }
}
Imports IronOcr

Class BelarusianOcrExample
    Shared Sub Main()
        ' Initialize the IronTesseract OCR engine
        Dim Ocr As New IronTesseract()

        ' Set the language to Belarusian for optimal recognition results
        Ocr.Language = OcrLanguage.Belarusian

        ' Define the input source: Image or PDF from a path
        Using Input As New OcrInput("images\Belarusian.png")
            ' Perform OCR to read the text
            Dim Result = Ocr.Read(Input)

            ' Extract the recognized text
            Dim AllText = Result.Text

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