OCR图像的某一区域
此示例通过选择图像的特定区域在 .NET 中执行 OCR,实现了 41% 的速度提升。
这些被称为ContentAreas
或CropAreas
。
如何在 C&num 中裁剪图像的特定区域;
- 下载用于裁剪图像特定区域的 C# 库
- 实例化
钢铁魔方
类。 - 实例化
裁剪矩形
对象的指定区域 - 使用
添加图像
方法来添加图像和裁剪细节。 - 使用
读取
方法从指定区域读取数据
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
。
钢铁魔方
类。裁剪矩形
对象的指定区域添加图像
方法来添加图像和裁剪细节。读取
方法从指定区域读取数据