加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
result.py 713 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiaochuanling 提交于 2024-01-03 17:03 . Changes
from PIL import Image
from paddleocr import PaddleOCR, draw_ocr
import numpy as np
ocr = PaddleOCR(use_angle_cls=True, lang="ch")
img_path = '33.jpg'
result = ocr.ocr(img_path, cls=True)
image = Image.open(img_path).convert('RGB')
boxes = [elements[0] for line in result for elements in line]
txts = [elements[1][0] for line in result for elements in line]
scores = [elements[1][1] for line in result for elements in line]
# Check the structure of boxes
for i in range(len(boxes)):
print(f"Box {i}: {boxes[i]}")
# Draw OCR result
im_show = draw_ocr(image, boxes, txts, scores, font_path='D:\\xcl\\github\\PaddleOCR\\doc\\fonts\\simfang.ttf')
im_show = Image.fromarray(im_show)
im_show.save('result1.jpg')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化