Bootstrap

C#PaddleOCRSharp使用

复制代码

using PaddleOCRSharp;

namespace PaddleOCRSharpDemo
{
    internal class Program
    {
        static void Main(string[] args)
        {
            //中英文模型V3模型
            OCRModelConfig config = null;

            //OCR参数
            OCRParameter oCRParameter = new OCRParameter();
            oCRParameter.cpu_math_library_num_threads = 6;//预测并发线程数
            oCRParameter.enable_mkldnn = true;//是否使用mkldnn模型
            oCRParameter.cls = false; //是否执行文字方向分类
            oCRParameter.use_angle_cls = false;//是否开启方向检测
            oCRParameter.det_db_score_mode = true;//是否使用多段线,即文字区域是用多段线还是用矩形,
            oCRParameter.det_db_unclip_ratio = 1.6f;
            oCRParameter.max_side_len = 2000;

            //初始化OCR引擎
            var engine = new PaddleOCREngine(config, oCRParameter);


            var imagebyte = File.ReadAllBytes("1.jpg");
            OCRResult ocrResult = engine.DetectText(imagebyte);

            // 输出所有
            //Console.WriteLine(ocrResult.Text);

            // 按行输出
            var blocks = ocrResult.TextBlocks;
            foreach (var line in blocks)
            {
                Console.WriteLine(line.Text);
            }
        }
    }
}

复制代码

https://www.yingtianit.com/

;