Ethiopic Alphabet OCR in C# and .NET

This article was translated from English: Does it need improvement?
Translated
View the article in English

另外 126 種語言

IronOCR 是一個 C# 軟體元件,允許 .NET 程式設計師從圖片和 PDF 文件中讀取 126 種語言的文本,包括 Amharic 字母。

它是一個專為 .NET 開發者設計的 Tesseract 高級分支,在速度和準確性方面經常優於其他 Tesseract 引擎。

IronOcr.Languages.Ethiopic 的內容

此套件包含 73 個適用於 .NET 的 OCR 語言:

  • AmharicAlphabet
  • AmharicAlphabetBest
  • AmharicAlphabetFast

下載

Amharic 字母語言包 style='white-space:normal'>[Ge'ez]

安裝

首先,我們需要將我們的 Amharic 字母 OCR 套件安裝到您的 .NET 專案中。

Install-Package IronOCR.Languages.Ethiopic

代碼示例

這個 C# 代碼範例從圖片或 PDF 文件中讀取 Amharic 字母文本。

// First, ensure the IronOcr.Languages.Ethiopic package is installed
using IronOcr;

public class EthiopicOcrExample
{
    public void ReadEthiopicText()
    {
        // Create an instance of IronTesseract
        var Ocr = new IronTesseract();

        // Set the language property to Ethiopic
        Ocr.Language = OcrLanguage.Ethiopic;

        // Define the input image containing Ethiopic text
        using (var Input = new OcrInput(@"images\Ethiopic.png"))
        {
            // Perform OCR to read text from the image
            var Result = Ocr.Read(Input);

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

            // Output the recognized text
            Console.WriteLine(AllText);
        }
    }
}
// First, ensure the IronOcr.Languages.Ethiopic package is installed
using IronOcr;

public class EthiopicOcrExample
{
    public void ReadEthiopicText()
    {
        // Create an instance of IronTesseract
        var Ocr = new IronTesseract();

        // Set the language property to Ethiopic
        Ocr.Language = OcrLanguage.Ethiopic;

        // Define the input image containing Ethiopic text
        using (var Input = new OcrInput(@"images\Ethiopic.png"))
        {
            // Perform OCR to read text from the image
            var Result = Ocr.Read(Input);

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

            // Output the recognized text
            Console.WriteLine(AllText);
        }
    }
}
' First, ensure the IronOcr.Languages.Ethiopic package is installed
Imports IronOcr

Public Class EthiopicOcrExample
	Public Sub ReadEthiopicText()
		' Create an instance of IronTesseract
		Dim Ocr = New IronTesseract()

		' Set the language property to Ethiopic
		Ocr.Language = OcrLanguage.Ethiopic

		' Define the input image containing Ethiopic text
		Using Input = New OcrInput("images\Ethiopic.png")
			' Perform OCR to read text from the image
			Dim Result = Ocr.Read(Input)

			' Store the recognized text
			Dim AllText = Result.Text

			' Output the recognized text
			Console.WriteLine(AllText)
		End Using
	End Sub
End Class
$vbLabelText   $csharpLabel
  • 這個範例創建了一個 IronTesseract 的實例來執行 OCR 操作。
  • 它使用 OcrLanguage.Ethiopic 將語言設置為 Amharic。
  • 使用 OcrInput 將來源圖像定義。
  • Read 方法執行 OCR 並返回包含識別文本的結果。
  • 被識別的文本存儲在 AllText 中並打印到控制台。