Faroese OCR in C# and .NET

This article was translated from English: Does it need improvement?
Translated
View the article in English

還有126種語言

IronOCR是一個 C# 軟體元件,允許.NET設計師從圖像和 PDF 文件中讀取 126 種語言(包括法羅語)的文字。

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

IronOCR的內容.語言.法羅語

此軟體包包含 46 種適用於.NET的 OCR 語言:

法羅群島 法羅群島Best 法羅群島Fast

下載

法羅語語言套件[føroyskt]

下載為Zip 檔案

安裝

首先,需要將法羅語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 作業中擷取文字訊息。