paddleocr package使用说明

快速上手

安装whl包

pip安装

  1. pip install paddleocr

本地构建并安装

  1. python setup.py bdist_wheel
  2. pip install dist/paddleocr-0.0.3-py3-none-any.whl

1. 代码使用

  • 检测+识别全流程
  1. from paddleocr import PaddleOCR, draw_ocr
  2. ocr = PaddleOCR() # need to run only once to download and load model into memory
  3. img_path = 'PaddleOCR/doc/imgs/11.jpg'
  4. result = ocr.ocr(img_path)
  5. for line in result:
  6. print(line)
  7. # 显示结果
  8. from PIL import Image
  9. image = Image.open(img_path).convert('RGB')
  10. boxes = [line[0] for line in result]
  11. txts = [line[1][0] for line in result]
  12. scores = [line[1][1] for line in result]
  13. im_show = draw_ocr(image, boxes, txts, scores, font_path='/path/to/PaddleOCR/doc/simfang.ttf')
  14. im_show = Image.fromarray(im_show)
  15. im_show.save('result.jpg')

结果是一个list,每个item包含了文本框,文字和识别置信度

  1. [[[24.0, 36.0], [304.0, 34.0], [304.0, 72.0], [24.0, 74.0]], ['纯臻营养护发素', 0.964739]]
  2. [[[24.0, 80.0], [172.0, 80.0], [172.0, 104.0], [24.0, 104.0]], ['产品信息/参数', 0.98069626]]
  3. [[[24.0, 109.0], [333.0, 109.0], [333.0, 136.0], [24.0, 136.0]], ['(45元/每公斤,100公斤起订)', 0.9676722]]
  4. ......

结果可视化

paddleocr package使用说明 - 图1
  • 单独执行检测
  1. from paddleocr import PaddleOCR, draw_ocr
  2. ocr = PaddleOCR() # need to run only once to download and load model into memory
  3. img_path = 'PaddleOCR/doc/imgs/11.jpg'
  4. result = ocr.ocr(img_path,rec=False)
  5. for line in result:
  6. print(line)
  7. # 显示结果
  8. from PIL import Image
  9. image = Image.open(img_path).convert('RGB')
  10. im_show = draw_ocr(image, result, txts=None, scores=None, font_path='/path/to/PaddleOCR/doc/simfang.ttf')
  11. im_show = Image.fromarray(im_show)
  12. im_show.save('result.jpg')

结果是一个list,每个item只包含文本框

  1. [[26.0, 457.0], [137.0, 457.0], [137.0, 477.0], [26.0, 477.0]]
  2. [[25.0, 425.0], [372.0, 425.0], [372.0, 448.0], [25.0, 448.0]]
  3. [[128.0, 397.0], [273.0, 397.0], [273.0, 414.0], [128.0, 414.0]]
  4. ......

结果可视化

paddleocr package使用说明 - 图2
  • 单独执行识别
  1. from paddleocr import PaddleOCR
  2. ocr = PaddleOCR() # need to run only once to download and load model into memory
  3. img_path = 'PaddleOCR/doc/imgs_words/ch/word_1.jpg'
  4. result = ocr.ocr(img_path,det=False)
  5. for line in result:
  6. print(line)

结果是一个list,每个item只包含识别结果和识别置信度

  1. ['韩国小馆', 0.9907421]

通过命令行使用

查看帮助信息

  1. paddleocr -h
  • 检测+识别全流程
  1. paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg

结果是一个list,每个item包含了文本框,文字和识别置信度

  1. [[[24.0, 36.0], [304.0, 34.0], [304.0, 72.0], [24.0, 74.0]], ['纯臻营养护发素', 0.964739]]
  2. [[[24.0, 80.0], [172.0, 80.0], [172.0, 104.0], [24.0, 104.0]], ['产品信息/参数', 0.98069626]]
  3. [[[24.0, 109.0], [333.0, 109.0], [333.0, 136.0], [24.0, 136.0]], ['(45元/每公斤,100公斤起订)', 0.9676722]]
  4. ......
  • 单独执行检测
  1. paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg --rec false

结果是一个list,每个item只包含文本框

  1. [[26.0, 457.0], [137.0, 457.0], [137.0, 477.0], [26.0, 477.0]]
  2. [[25.0, 425.0], [372.0, 425.0], [372.0, 448.0], [25.0, 448.0]]
  3. [[128.0, 397.0], [273.0, 397.0], [273.0, 414.0], [128.0, 414.0]]
  4. ......
  • 单独执行识别
    1. paddleocr --image_dir PaddleOCR/doc/imgs_words/ch/word_1.jpg --det false

结果是一个list,每个item只包含识别结果和识别置信度

  1. ['韩国小馆', 0.9907421]

自定义模型

当内置模型无法满足需求时,需要使用到自己训练的模型。 首先,参照inference.md 第一节转换将检测和识别模型转换为inference模型,然后按照如下方式使用

代码使用

  1. from paddleocr import PaddleOCR, draw_ocr
  2. # 检测模型和识别模型路径下必须含有model和params文件
  3. ocr = PaddleOCR(det_model_dir='{your_det_model_dir}',rec_model_dir='{your_rec_model_dir}')
  4. img_path = 'PaddleOCR/doc/imgs/11.jpg'
  5. result = ocr.ocr(img_path)
  6. for line in result:
  7. print(line)
  8. # 显示结果
  9. from PIL import Image
  10. image = Image.open(img_path).convert('RGB')
  11. boxes = [line[0] for line in result]
  12. txts = [line[1][0] for line in result]
  13. scores = [line[1][1] for line in result]
  14. im_show = draw_ocr(image, boxes, txts, scores, font_path='/path/to/PaddleOCR/doc/simfang.ttf')
  15. im_show = Image.fromarray(im_show)
  16. im_show.save('result.jpg')

通过命令行使用

  1. paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg --det_model_dir {your_det_model_dir} --rec_model_dir {your_rec_model_dir}

参数说明

字段 说明 默认值
use_gpu 是否使用GPU TRUE
gpu_mem 初始化占用的GPU内存大小 8000M
image_dir 通过命令行调用时执行预测的图片或文件夹路径
det_algorithm 使用的检测算法类型 DB
det_model_dir 检测模型所在文件夹。传参方式有两种,1. None: 自动下载内置模型到 ~/.paddleocr/det;2.自己转换好的inference模型路径,模型路径下必须包含model和params文件 None
det_max_side_len 检测算法前向时图片长边的最大尺寸,当长边超出这个值时会将长边resize到这个大小,短边等比例缩放 960
det_db_thresh DB模型输出预测图的二值化阈值 0.3
det_db_box_thresh DB模型输出框的阈值,低于此值的预测框会被丢弃 0.5
det_db_unclip_ratio DB模型输出框扩大的比例 2
det_east_score_thresh EAST模型输出预测图的二值化阈值 0.8
det_east_cover_thresh EAST模型输出框的阈值,低于此值的预测框会被丢弃 0.1
det_east_nms_thresh EAST模型输出框NMS的阈值 0.2
rec_algorithm 使用的识别算法类型 CRNN
rec_model_dir 识别模型所在文件夹。传承那方式有两种,1. None: 自动下载内置模型到 ~/.paddleocr/rec;2.自己转换好的inference模型路径,模型路径下必须包含model和params文件 None
rec_image_shape 识别算法的输入图片尺寸 “3,32,320”
rec_char_type 识别算法的字符类型,中文(ch)或英文(en) ch
rec_batch_num 进行识别时,同时前向的图片数 30
max_text_length 识别算法能识别的最大文字长度 25
rec_char_dict_path 识别模型字典路径,当rec_model_dir使用方式2传参时需要修改为自己的字典路径 ./ppocr/utils/ppocr_keys_v1.txt
use_space_char 是否识别空格 TRUE
enable_mkldnn 是否启用mkldnn FALSE
det 前向时使用启动检测 TRUE
rec 前向时是否启动识别 TRUE