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

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

  • 馬拉地語
  • 馬拉地語Best
  • 馬拉地語Fast

下載

馬拉地語語言套件 [मराठी]

安裝

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

Install-Package IronOcr.Languages.Marathi

程式碼範例

此 C# 程式碼範例可從圖片或 PDF 文件中讀取馬拉地語文字。

// Include the IronOcr namespace
using IronOcr;

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

        // Specify the language as Marathi
        Ocr.Language = OcrLanguage.Marathi;

        // Load the image or PDF document to be processed
        using (var Input = new OcrInput(@"images\Marathi.png"))
        {
            // Perform OCR on the input document
            var Result = Ocr.Read(Input);

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

            // Output the recognized text to console
            Console.WriteLine(AllText);
        }
    }
}
// Include the IronOcr namespace
using IronOcr;

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

        // Specify the language as Marathi
        Ocr.Language = OcrLanguage.Marathi;

        // Load the image or PDF document to be processed
        using (var Input = new OcrInput(@"images\Marathi.png"))
        {
            // Perform OCR on the input document
            var Result = Ocr.Read(Input);

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

            // Output the recognized text to console
            Console.WriteLine(AllText);
        }
    }
}
' Include the IronOcr namespace
Imports IronOcr

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

		' Specify the language as Marathi
		Ocr.Language = OcrLanguage.Marathi

		' Load the image or PDF document to be processed
		Using Input = New OcrInput("images\Marathi.png")
			' Perform OCR on the input document
			Dim Result = Ocr.Read(Input)

			' Get the recognized text
			Dim AllText = Result.Text

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

說明:

  • 此程式碼使用來自 IronOCR 函式庫的 IronTesseract 類別來執行 OCR。
  • Ocr.Language 屬性已設定為使用馬拉地語語言套件。
  • 透過包含馬拉地語文字的圖片或 PDF 檔案路徑,建立 OcrInput 標記。
  • Ocr.Read() 方法會處理輸入內容並提取文字。
  • 識別出的文字會儲存於 AllText 變數中,並 PRINT 至控制台。