OCR 圖像的區域
此示例通過選擇圖像的特定區域在 .NET 中執行 OCR,實現了 41% 的速度提升。
這些被稱為 ContentAreas
或 CropAreas
。
如何在 C# 中裁剪圖像的特定區域
- 下載 C# 程式庫來裁剪圖片的特定區域
- 實例化
IronTesseract
類別。 - 實例化
裁剪矩形
具有指定區域的物件 - 使用
新增圖片
方法添加圖像以及裁剪詳細信息。 - 使用
讀取
從指定區域讀取的方法
using IronOcr; using IronSoftware.Drawing; using System; var ocrTesseract = new IronTesseract(); using var ocrInput = new OcrInput(); // A 41% improvement on speed by specifiying a pixel region var ContentArea = new Rectangle(x: 215, y: 1250, width: 1335, height: 280); ocrInput.LoadImage("img/example.png", ContentArea); var ocrResult = ocrTesseract.Read(ocrInput); Console.WriteLine(ocrResult.Text);
Imports IronOcr Imports IronSoftware.Drawing Imports System Private ocrTesseract = New IronTesseract() Private ocrInput = New OcrInput() ' A 41% improvement on speed by specifiying a pixel region Private ContentArea = New Rectangle(x:= 215, y:= 1250, width:= 1335, height:= 280) ocrInput.LoadImage("img/example.png", ContentArea) Dim ocrResult = ocrTesseract.Read(ocrInput) Console.WriteLine(ocrResult.Text)
Install-Package IronOcr
此示例通過選擇圖像的特定區域在 .NET 中執行 OCR,實現了 41% 的速度提升。
這些被稱為 ContentAreas
或 CropAreas
。
IronTesseract
類別。裁剪矩形
具有指定區域的物件新增圖片
方法添加圖像以及裁剪詳細信息。讀取
從指定區域讀取的方法