一个简单好用的OCR识别工具
支持文件识别、截图识别、导入图像识别、文件表格识别
识别很准确而且使用很方便很容易上手。
C#示例代码:
- OpenFileDialog ofd = new OpenFileDialog();
- ofd.Filter = "*.*|*.bmp;*.jpg;*.jpeg;*.tiff;*.tiff;*.png";
- if (ofd.ShowDialog() != DialogResult.OK) return;
- var imagebyte = File.ReadAllBytes(ofd.FileName);
- Bitmap bitmap = new Bitmap(new MemoryStream(imagebyte));
- OCRModelConfig config = null;
- OCRParameter oCRParameter = null;
- OCRResult ocrResult = new OCRResult();
- using (PaddleOCREngine engine = new PaddleOCREngine(config, oCRParameter))
- {
- ocrResult = engine.DetectText(bmp);
- }
- if (ocrResult != null)
- {
- MessageBox.Show(ocrResult.Text,"识别结果");
- }
复制代码
这里还有一个Demo:
链接:https://pan.baidu.com/s/1QHXCmT6kDRoTWUJevJFisQ
提取码:i6e9
|