Estonian 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 開發人員從圖像和 PDF 文件中讀取 126 種語言的文本,包括愛沙尼亞語。 它是一個專為 .NET 開發者設計的 Tesseract 高級分支,在速度和準確性方面經常優於其他 Tesseract 引擎。

IronOcr.Languages.Estonian 的內容

此套件包含以下 .NET 的 OCR 語言:

  • 愛沙尼亞語
  • 愛沙尼亞語最佳
  • 愛沙尼亞語快速

下載

愛沙尼亞語語言包 style='white-space:default'>[愛沙尼亞語]

安裝

我們首先要做的是將我們的 愛沙尼亞語 OCR 套件安裝到您的 .NET 項目中。

Install-Package IronOCR.Languages.Estonian

代碼示例

這是 C# 代碼範例,從圖像或 PDF 文件中讀取愛沙尼亞語文本。

// Import the IronOcr namespace
using IronOcr;

// Create a new instance of the IronTesseract class
var Ocr = new IronTesseract();

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

// Load the image or PDF from which text needs to be extracted
using (var Input = new OcrInput(@"images\Estonian.png"))
{
    // Perform OCR to read text from the specified input
    var Result = Ocr.Read(Input);

    // Extract all the recognized text from the OCR result
    var AllText = Result.Text;
}
// Import the IronOcr namespace
using IronOcr;

// Create a new instance of the IronTesseract class
var Ocr = new IronTesseract();

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

// Load the image or PDF from which text needs to be extracted
using (var Input = new OcrInput(@"images\Estonian.png"))
{
    // Perform OCR to read text from the specified input
    var Result = Ocr.Read(Input);

    // Extract all the recognized text from the OCR result
    var AllText = Result.Text;
}
' Import the IronOcr namespace
Imports IronOcr

' Create a new instance of the IronTesseract class
Private Ocr = New IronTesseract()

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

' Load the image or PDF from which text needs to be extracted
Using Input = New OcrInput("images\Estonian.png")
	' Perform OCR to read text from the specified input
	Dim Result = Ocr.Read(Input)

	' Extract all the recognized text from the OCR result
	Dim AllText = Result.Text
End Using
$vbLabelText   $csharpLabel

代碼說明:

  • IronTesseract: 這是 IronOCR 提供的主要類,用於執行 OCR 操作。
  • Ocr.Language: 通過設置此屬性,我們可以定義在 OCR 過程中應該使用哪種語言。 這裡設置為愛沙尼亞語。
  • OcrInput: 這是用來指定我們要讀取的圖像或 PDF 文件。 它接受一個文件路徑作為輸入。
  • Ocr.Read(Input): 此方法處理指定的輸入並對其執行 OCR。
  • Result.Text: 此屬性包含從圖像或 PDF 文件中成功識別和提取的所有文本。