Afrikaans 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 開發人員以 126 種語言從圖片和 PDF 文件中讀取文字,包括南非荷蘭語。

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

IronOcr.Languages.Afrikaans 的內容

此套件包含 52 種 .NET 的 OCR 語言:

  • 南非荷蘭語
  • 南非荷蘭語Best
  • 南非荷蘭語Fast

下載

南非荷蘭語語言包 style='white-space:default'>[Afrikaans]

安裝

我們首先需要做的是將 南非荷蘭語 OCR 套件安裝到您的 .NET 專案中。

Install-Package IronOCR.Languages.Afrikaans

代碼示例

此 C# 代碼範例從圖片或 PDF 文件中讀取南非荷蘭語文本。

// First, ensure the IronOcr.Languages.Afrikaans package is installed in your project.
// This example requires the IronOcr C# package to read text from images or PDFs.

using IronOcr;

var Ocr = new IronTesseract(); // Initialize the IronTesseract class
Ocr.Language = OcrLanguage.Afrikaans; // Set the language to Afrikaans

// Load the image or PDF document into an OcrInput object
using (var Input = new OcrInput(@"images\Afrikaans.png"))
{
    // Perform OCR on the input document
    var Result = Ocr.Read(Input);

    // Retrieve the complete recognized text
    var AllText = Result.Text;

    // Output the recognized text (this step is customizable for your use-case)
    Console.WriteLine(AllText);
}
// First, ensure the IronOcr.Languages.Afrikaans package is installed in your project.
// This example requires the IronOcr C# package to read text from images or PDFs.

using IronOcr;

var Ocr = new IronTesseract(); // Initialize the IronTesseract class
Ocr.Language = OcrLanguage.Afrikaans; // Set the language to Afrikaans

// Load the image or PDF document into an OcrInput object
using (var Input = new OcrInput(@"images\Afrikaans.png"))
{
    // Perform OCR on the input document
    var Result = Ocr.Read(Input);

    // Retrieve the complete recognized text
    var AllText = Result.Text;

    // Output the recognized text (this step is customizable for your use-case)
    Console.WriteLine(AllText);
}
' First, ensure the IronOcr.Languages.Afrikaans package is installed in your project.
' This example requires the IronOcr C# package to read text from images or PDFs.

Imports IronOcr

Private Ocr = New IronTesseract() ' Initialize the IronTesseract class
Ocr.Language = OcrLanguage.Afrikaans ' Set the language to Afrikaans

' Load the image or PDF document into an OcrInput object
Using Input = New OcrInput("images\Afrikaans.png")
	' Perform OCR on the input document
	Dim Result = Ocr.Read(Input)

	' Retrieve the complete recognized text
	Dim AllText = Result.Text

	' Output the recognized text (this step is customizable for your use-case)
	Console.WriteLine(AllText)
End Using
$vbLabelText   $csharpLabel

說明:

  • IronTesseract:此類是 IronOCR 庫的一部分,用於設置OCR過程。
  • OcrLanguage:此屬性設置OCR的語言。 這裡設置為南非荷蘭語。
  • OcrInput:此類封裝了OCR過程的輸入文件。 它支持各種圖片格式和 PDF 文件。
  • Ocr.Read():此方法執行OCR過程並返回包含識別文本的結果物件。
  • Result.Text:此屬性包含從輸入文檔中提取的文本。