Scottish Gaelic OCR in C# and .NET
IronOCR 是一個 C# 軟體元件,讓 .NET 程式設計師能夠從 126 種語言(包括蘇格蘭蓋爾語)的圖片和 PDF 文件中讀取文字。
這是 Tesseract 的進階分支版本,專為 .NET 開發人員打造,無論在速度或準確度方面,其表現均經常優於其他 Tesseract 引擎。
IronOcr.Languages.ScottishGaelic 的內容
此套件包含 67 種適用於 .NET 的 OCR 語言:
- 蘇格蘭蓋爾語
- 蘇格蘭蓋爾語Best
- 蘇格蘭蓋爾語快速版
下載
蘇格蘭蓋爾語語言套件 [Gàidhlig]
安裝
我們首先必須將蘇格蘭蓋爾語 OCR 套件安裝至您的 .NET 專案中。
Install-Package IronOcr.Languages.ScottishGaelic
程式碼範例
此 C# 程式碼範例用於從圖片或 PDF 文件中讀取蘇格蘭蓋爾語文字。
// PM> Install-Package IronOcr.Languages.ScottishGaelic
using IronOcr;
// Create an instance of the IronTesseract class
var Ocr = new IronTesseract();
// Set the language to Scottish Gaelic
Ocr.Language = OcrLanguage.ScottishGaelic;
// Create an OcrInput object with the specified image or PDF file
using (var Input = new OcrInput(@"images\ScottishGaelic.png"))
{
// Perform OCR on the input and obtain the result
var Result = Ocr.Read(Input);
// Retrieve the recognized text
var AllText = Result.Text;
}
// PM> Install-Package IronOcr.Languages.ScottishGaelic
using IronOcr;
// Create an instance of the IronTesseract class
var Ocr = new IronTesseract();
// Set the language to Scottish Gaelic
Ocr.Language = OcrLanguage.ScottishGaelic;
// Create an OcrInput object with the specified image or PDF file
using (var Input = new OcrInput(@"images\ScottishGaelic.png"))
{
// Perform OCR on the input and obtain the result
var Result = Ocr.Read(Input);
// Retrieve the recognized text
var AllText = Result.Text;
}
' PM> Install-Package IronOcr.Languages.ScottishGaelic
Imports IronOcr
' Create an instance of the IronTesseract class
Private Ocr = New IronTesseract()
' Set the language to Scottish Gaelic
Ocr.Language = OcrLanguage.ScottishGaelic
' Create an OcrInput object with the specified image or PDF file
Using Input = New OcrInput("images\ScottishGaelic.png")
' Perform OCR on the input and obtain the result
Dim Result = Ocr.Read(Input)
' Retrieve the recognized text
Dim AllText = Result.Text
End Using
上述程式碼將安裝並設定使用 IronOCR 進行蘇格蘭蓋爾語的 OCR 處理流程。 它會對指定的圖片 ScottishGaelic.png 執行光學字元辨識,並擷取圖片中所含的文字。 擷取的文字將儲存於 AllText 變數中,供後續使用或處理。

