当前位置: 首页 > 图灵资讯 > 行业资讯> python PaddleOCR库的介绍

python PaddleOCR库的介绍

来源:图灵python
时间: 2024-07-04 14:48:20

说明

1、Paddleocr是一个基于深度学习的ocr识别库,具有良好的中文识别精度,可以满足大多数文本提取的需要。

2、三个依赖库需要依次安装,shapely库可能会受到系统的影响,安装错误。

安装命令

pipinstallpaddlepaddle
pipinstallshapely
pipinstallpaddleocr

代码实现

ocr=PaddleOCR(use_angle_cls=True,)
#输入要识别的图片路径
img_path=r"d:\Desktop\4A4A16F-6B12-4ffc-88C6-FC86E4F69.png"
#保存输出结果的路径
result=ocr.ocr(img_path,cls=True)
forlineinresult:
print(line)

fromPILimportImage
image=Image.open(img_path).convert('RGB')
boxes=[line[0]forlineinresult]
txts=[line[1][0]forlineinresult]
scores=[line[1][1]forlineinresult]
im_show=draw_ocr(image,boxes,txts,scores)
im_show=Image.fromarray(im_show)
im_show.show()

以上是python PaddleOCR库的介绍希望对大家有所帮助。更多Python学习指导:python基础教程