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

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

  • 奧里亞語
  • 奧里亞語Best
  • 奧里亞語Fast
  • 奧里亞字母
  • 奧里亞字母Best
  • 奧里亞字母Fast

下載

奧里亞語語言套件 [ଓଡଆ]

安裝

我們首先必須將 Oriya OCR 套件安裝至您的 .NET 專案中。

Install-Package IronOcr.Languages.Oriya

程式碼範例

此 C# 程式碼範例會從圖片或 PDF 文件中讀取奧里亞語文字。

// This example demonstrates how to use the IronOCR library to perform OCR on an Oriya language image.
using IronOcr;

class Program
{
    static void Main()
    {
        // Instantiate the IronTesseract engine
        var Ocr = new IronTesseract();

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

        // Define the input file path for the OCR
        using (var Input = new OcrInput(@"images\Oriya.png"))
        {
            // Perform OCR and obtain the result
            var Result = Ocr.Read(Input);

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

            // Output the recognized text
            Console.WriteLine(AllText);
        }
    }
}
// This example demonstrates how to use the IronOCR library to perform OCR on an Oriya language image.
using IronOcr;

class Program
{
    static void Main()
    {
        // Instantiate the IronTesseract engine
        var Ocr = new IronTesseract();

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

        // Define the input file path for the OCR
        using (var Input = new OcrInput(@"images\Oriya.png"))
        {
            // Perform OCR and obtain the result
            var Result = Ocr.Read(Input);

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

            // Output the recognized text
            Console.WriteLine(AllText);
        }
    }
}
' This example demonstrates how to use the IronOCR library to perform OCR on an Oriya language image.
Imports IronOcr

Friend Class Program
	Shared Sub Main()
		' Instantiate the IronTesseract engine
		Dim Ocr = New IronTesseract()

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

		' Define the input file path for the OCR
		Using Input = New OcrInput("images\Oriya.png")
			' Perform OCR and obtain the result
			Dim Result = Ocr.Read(Input)

			' Extract all recognized text from the result
			Dim AllText = Result.Text

			' Output the recognized text
			Console.WriteLine(AllText)
		End Using
	End Sub
End Class
$vbLabelText   $csharpLabel
  • IronTesseract 物件用於配置及執行 OCR。
  • OCR 的語言設定為奧里亞語,使用 OcrLanguage.Oriya
  • OcrInput 標籤可讓您指定需要進行文字擷取的圖片或文件。
  • Read() 方法執行 OCR 處理,並產生結果,從中可提取並利用已識別的文字。