PaddleOCR.NET是一個基于.NET framework4.5的C#庫,使用的是paddleocr輕量級ocr檢測和識別模型,目前PaddleOCR.NET只支持CPU版本,GPU版本后續(xù)會出來。
開發(fā)環(huán)境
- windows10 x64
- VS2019專業(yè)版
- paddle_inference==2.1.1 cpu_avx_mkl
- PaddleOCR-release-2.2
- cmake==3.17.2
- NET Framework4.5
使用教程
第一步引用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數(shù)據(jù)格式
-
InferManager infer = new InferManager("config.txt", true, true);
-
var result = infer.DetectAndRecognize("D:\\22.jpg");
-
Console.WriteLine(result);
-
庫地址:https://github.com/futureflsl/PaddleOCR.NET
相關信息:
飛槳OCR超輕量中英文識別
https://www.paddlepaddle.org.cn/hub/scene/ocr
該文章在 2022/6/15 18:32:33 編輯過