Tatar OCR in C# and .NET

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

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

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

IronOcr.Languages.Tatar的內容

本套件包含 40 種 .NET 的 OCR 語言:

  • 韃靼文
  • TatarBest
  • TatarFast

下載

[татар теле] * 下載方式為 Zip * 使用 NuGet 安裝

安裝

程式碼範例 Install-Package IronOcr.Languages.Tatar using IronOcr; var Ocr = new IronTesseract(); // Set the language to Tatar for OCR processing Ocr.Language = OcrLanguage.Tatar; // Define the input source as an image or PDF containing Tatar text using (var Input = new OcrInput(@"images\Tatar.png")) { // Perform OCR to read text from the input image var Result = Ocr.Read(Input); // Retrieve the recognized text and store it in a variable var AllText = Result.Text; } ```