paddleocr

paddleOCR检测的模型目前支持两种backbone,分别是

  • MobileNetV3,ResNet50_vd

超轻量级中文OCR模型下载:检测,识别
通用中文OCR模型下载:检测,识别
使用python

 - python tools/infer/predict_system.py --image_dir="./doc/imgs/11.jpg"
   --det_model_dir="./inference/ch_det_mv3_db/"  --rec_model_dir="./inference/ch_rec_mv3_crnn/" --use_gpu=False

断点训练:如果训练程序中断,如果希望加载训练中断的模型从而恢复训练,可以通过指定Global.checkpoints指定要加载的模型路径:

 - python tools/infer/predict_det.py --image_dir="./doc/imgs"`

DB是最大边长,且resize_type=0
EAST最大边长,resize_type=0
DB中的outputs[0]代表什么

from shapely.geometry import Polygon 报错—已解决
检测代码

python tools/infer/predict_det.py --image_dir="./doc/imgs/11.jpg" --det_model_dir="./inference/ch_det_mv3_db"

识别代码

python tools/infer/predict_rec.py --image_dir="./doc/imgs_words/en/word_1.png"  --rec_char_dict_path="./ppocr/utils/ppocr_keys_v1.txt"

识别与检测

python tools/infer/predict_system.py --image_dir="./doc/imgs/1.jpg" --det_model_dir="./inference/ch_det_mv3_db/"  --rec_model_dir="./inference/ch_rec_mv3_crnn/" --use_gpu=False

参考 :paddleocr

你可能感兴趣的:(paddleocr)