[C#][原创]利用paddleocr.net库编写C#代码进行ocr检测和识别
Posted FL1623863129
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[C#][原创]利用paddleocr.net库编写C#代码进行ocr检测和识别相关的知识,希望对你有一定的参考价值。
PaddleOCR.NET是一个基于.NET framework4.5的C#库,使用的是paddleocr轻量级ocr检测和识别模型,目前PaddleOCR.NET只支持CPU版本,GPU版本后续会出来。
开发环境
- windows10 x64
- VS2019专业版
- paddle_inference==2.1.1 cpu_avx_mkl
- PaddleOCR-release-2.2
- cmake==3.17.2
- NET Framework4.5
使用教程
-
1、下载paadleor推理引擎:https://paddle-wheel.bj.bcebos.com/2.1.1/win-infer/mkl/cpu/paddle_inference.zip,并解压所有的DLL文件到自己运行目录
-
2、引用PaddleOCR.NET到自己项目中,编写代码
第一步引用PaddleOCR.NET库
第二步编写自己的代码:
案例一:仅做OCR检测,支持byte[],图片路径,和Bitmap,如果使用opencvsharp也可以扩展
Bitmap bmp = new Bitmap("D:\\1.jpg");
Bitmap b = new Bitmap(bmp);
bmp.Dispose();
InferManager infer = new InferManager("config.txt",true,false);
var result = infer.Detect("D:\\1.jpg");
pictureBox1.Image = infer.DrawImage(b,result);
infer.Dispose();
案例二:仅做OCR识别,单文本图片识别
InferManager infer = new InferManager("config.txt", false, true);
Bitmap bmp = new Bitmap("D:\\line.jpg");
var result = infer.RecognizeOnly(bmp);
infer.Dispose();
MessageBox.Show(result.Text+"|"+result.Score);
案例三:对图片所有文本检测ocr检测和识别,并返回json数据格式
InferManager infer = new InferManager("config.txt", true, true);
var result = infer.DetectAndRecognize("D:\\\\22.jpg");
Console.WriteLine(result);
infer.Dispose();
以上是关于[C#][原创]利用paddleocr.net库编写C#代码进行ocr检测和识别的主要内容,如果未能解决你的问题,请参考以下文章