赞
踩
1. ppstructure的github地址:https://github.com/PaddlePaddle/PaddleOCR/tree/release/2.6/ppstructure
2. 所需环境:我的环境是py 3.8
首先需要拉取paddleocr的源码:
https://github.com/PaddlePaddle/PaddleOCR.git
然后就是在ppstructure中创建inference文件夹放置模型
模型可以根据自己的需求在github上的model-list找寻下载。
3. 安装依赖
安装paddleocr依赖
pip install -r requirements.txt
安装paddlepaddle
python -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple
以上的是cpu版本,需要gpu版本可以去github看看。在这里提醒一下,建议pip源用国内的清华源,不然下载容易断链接不稳定
安装paddleocr的whl包
pip install "paddleocr>=2.6.0.3"
pip install paddleclas>=2.4.3
4. 图像识别处理
python predict_system.py --image_dir=.\docs\table\table10.jpg --det_model_dir=.\inference\ch_PP-OCRv3_det_infer --rec_model_dir=.\inference\ch_PP-OCRv3_rec_infer --rec_char_dict_path=..\ppocr\utils\ppocr_keys_v1.txt --table_model_dir=inference\ch_ppstructure_mobile_v2.0_SLANet_infer --table_char_dict_path=..\ppocr\utils\dict\table_structure_dict.txt --layout_model_dir=inference\picodet_lcnet_x1_0_fgd_layout_cdla_infer --layout_dict_path=..\ppocr\utils\dict\layout_dict\layout_cdla_dict.txt --vis_font_path=..\doc\fonts\simfang.ttf --recovery=True --output=..\output\ 在cmd的ppstructure目录下输入此指令即可,根据自己的模型以及文件进行相应更改
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。