使用 C# 和 .NET 進行法羅語 OCR 識別
This article was translated from English: Does it need improvement?
TranslatedView the article in English
IronOCR 是一個 C# 軟體元件,允許 .NET 程式設計師從圖像和 PDF 文件中讀取 126 種語言(包括法羅語)的文字。
它是 Tesseract 的一個高級分支,專為 .NET 開發人員構建,在速度和準確性方面通常優於其他 Tesseract 引擎。
IronOcr.Languages.Faroese 的內容
此軟體包包含 46 種適用於 .NET 的 OCR 語言:
法羅群島 法羅群島Best 法羅群島Fast
下載
法羅語語言包[法羅語]
下載為Zip 檔案
- 使用NuGet安裝
安裝
首先,需要將法羅語OCR 套件安裝到您的 .NET 專案中:
Install-Package IronOCR.Languages.Faroese
程式碼範例
這段 C# 程式碼範例從圖像或 PDF 文件中讀取法羅文本。
// Import the IronOcr namespace
using IronOcr;
class Program
{
static void Main()
{
// Create a new instance of IronTesseract
var Ocr = new IronTesseract();
// Specify the language to use for OCR
// In this case, we're using Faroese
Ocr.Language = OcrLanguage.Faroese;
// Use a using statement for automatic resource management
using (var Input = new OcrInput(@"images\Faroese.png"))
{
// Perform OCR on the input image
var Result = Ocr.Read(Input);
// Extract the recognized text
var AllText = Result.Text;
// Print the extracted text to console
Console.WriteLine(AllText);
}
}
}// Import the IronOcr namespace
using IronOcr;
class Program
{
static void Main()
{
// Create a new instance of IronTesseract
var Ocr = new IronTesseract();
// Specify the language to use for OCR
// In this case, we're using Faroese
Ocr.Language = OcrLanguage.Faroese;
// Use a using statement for automatic resource management
using (var Input = new OcrInput(@"images\Faroese.png"))
{
// Perform OCR on the input image
var Result = Ocr.Read(Input);
// Extract the recognized text
var AllText = Result.Text;
// Print the extracted text to console
Console.WriteLine(AllText);
}
}
}$vbLabelText $csharpLabel
IronTesseract:此物件用作核心 OCR 引擎。Ocr.Language:將 OCR 語言設定為法羅語。 請確保已安裝法羅語語言套件。OcrInput:提供用於 OCR 的輸入檔案(影像或 PDF)。Ocr.Read:處理輸入並產生 OCR 結果。Result.Text:從 OCR 操作中擷取文字資訊。





