Basque 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種語言,包括巴斯克語。

它是 Tesseract 的一個高級分支,專為 .NET 開發人員構建,在速度和準確性上經常優於其他 Tesseract 引擎。

IronOcr.Languages.Basque的內容

該套件包含43種.NET OCR語言:

  • 巴斯克語
  • 巴斯克Best
  • 巴斯克Fast

下載

巴斯克語言包 style='white-space:default'>[euskara]

安裝

我們需要做的第一件事是將巴斯克OCR套件安裝到您的.NET專案中。

Install-Package IronOCR.Languages.Basque

代碼示例

這個C#代碼範例從圖像或PDF文件中讀取巴斯克文字。

// Import the IronOcr namespace
using IronOcr;

class BasqueOCRExample
{
    static void Main()
    {
        // Create a new instance of IronTesseract
        var Ocr = new IronTesseract();

        // Set the language to Basque
        Ocr.Language = OcrLanguage.Basque;

        // Read the text from a Basque image or PDF
        using (var Input = new OcrInput(@"images\Basque.png"))
        {
            // Perform OCR to get the result
            var Result = Ocr.Read(Input);

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

            // Output the extracted text
            System.Console.WriteLine(AllText);
        }
    }
}
// Import the IronOcr namespace
using IronOcr;

class BasqueOCRExample
{
    static void Main()
    {
        // Create a new instance of IronTesseract
        var Ocr = new IronTesseract();

        // Set the language to Basque
        Ocr.Language = OcrLanguage.Basque;

        // Read the text from a Basque image or PDF
        using (var Input = new OcrInput(@"images\Basque.png"))
        {
            // Perform OCR to get the result
            var Result = Ocr.Read(Input);

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

            // Output the extracted text
            System.Console.WriteLine(AllText);
        }
    }
}
' Import the IronOcr namespace
Imports IronOcr

Friend Class BasqueOCRExample
	Shared Sub Main()
		' Create a new instance of IronTesseract
		Dim Ocr = New IronTesseract()

		' Set the language to Basque
		Ocr.Language = OcrLanguage.Basque

		' Read the text from a Basque image or PDF
		Using Input = New OcrInput("images\Basque.png")
			' Perform OCR to get the result
			Dim Result = Ocr.Read(Input)

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

			' Output the extracted text
			System.Console.WriteLine(AllText)
		End Using
	End Sub
End Class
$vbLabelText   $csharpLabel

這段代碼使用IronOCR專門為巴斯克語言建立OCR引擎。 它載入一個圖像(或PDF路徑)來執行OCR並提取所有文本內容,然後將其輸出到控制臺。