Norwegian OCR in C# and .NET

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

126 種以上語言

IronOCR for .NET 是一個 C# 軟體元件,允許 .NET 編碼人員從圖像和 PDF 文件中讀取文字,可使用 126 種語言,包括挪威語。

它是 Tesseract 的進階分叉,專為 .NET 開發人員打造,在速度和精確度上都經常超越其他 Tesseract 引擎。

IronOcr.Languages.Norwegian的內容

本套件包含適用於 .NET 的 52 種 OCR 語言:

  • 挪威語
  • 挪威語最佳
  • 挪威語快速

下載

[Norsk] * 下載方式為 Zip * 使用 NuGet 安裝

安裝

程式碼範例 Install-Package IronOCR.Languages.Norwegian using IronOcr; var Ocr = new IronTesseract(); // Set the OCR language to Norwegian Ocr.Language = OcrLanguage.Norwegian; // Define the input source as an image file using (var Input = new OcrInput(@"images\Norwegian.png")) { // Perform OCR to read the text from the image var Result = Ocr.Read(Input); // Store the extracted text in a variable var AllText = Result.Text; // Output the extracted text to the console Console.WriteLine(AllText); } ``` - 此程式碼會初始化 OCR 引擎、將語言設定為挪威語、從影像讀取文字,然後輸出識別的文字。 - 確保您的 .NET 專案已安裝 IronOCR 套件和挪威語套件,才能成功執行本範例。