python3.10安装PaddleOCR流程
本帖最后由 yc0205 于 2023-7-29 08:58 编辑因为我也正要使用到ocr ,所以查看了好多OCR的开源如:TesseracT 等,都会出现各种问题
最后还是不行,然后有人推荐使用paddleOCR,我下载必安装能正常使用了,才分享出来
1.默认,各位大佬都以正确并且配制好python3.10.
2.安装PaddlePaddle:》》方窗键+R 打开CMD 运行以下代码:
pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple
运行前
3.安装PaddleOCR whl包》》》方窗键+R 打开CMD 运行以下代码》》pip install "paddleocr>=2.0.1"
运行前
运行后
4.使用python代码进行测试,默认测试图片在D:\05.jpg
from paddleocr import PaddleOCR, draw_ocr
# Paddleocr目前支持的多语言语种可以通过修改lang参数进行切换
# 例如`ch`, `en`, `fr`, `german`, `korean`, `japan`
ocr = PaddleOCR(use_angle_cls=True, lang="ch")# need to run only once to download and load model into memory
img_path = 'D:/abc/00207393.jpg'
result = ocr.ocr(img_path, cls=True)
for idx in range(len(result)):
res = result
for line in res:
print(line)
# 显示结果
# 如果本地没有simfang.ttf,可以在doc/fonts目录下下载
from PIL import Image
result = result
image = Image.open(img_path).convert('RGB')
boxes = for line in result]
txts = for line in result]
scores = for line in result]
im_show = draw_ocr(image, boxes, txts, scores, font_path='doc/fonts/simfang.ttf')
im_show = Image.fromarray(im_show)
im_show.save('result.jpg')
方窗键+R 打开CMD》python粘贴代码运行前
运行后
与实图对比
谢谢各位大佬观看
paddleOCR的识别率真的很能打。感谢如此详细的教程。 装不了{:1_907:}
ERROR: Could not find a version that satisfies the requirement paddlepaddle (from versions: none)
ERROR: No matching distribution found for paddlepaddle 天若魔改版 , 吊打一切 本帖最后由 zpwz 于 2023-7-29 09:24 编辑
感谢分享
如果提供paddleOCR源就更好了... xouou 发表于 2023-7-29 09:20
天若魔改版 , 吊打一切
5.0版吗?还是树洞ocr? boxer 发表于 2023-7-29 09:16
装不了
ERROR: Could not find a version that satisfies the requirement paddlepaddle (from v ...
照抄就可以了 zpwz 发表于 2023-7-29 09:22
感谢分享
如果提供paddleOCR源就更好了...
https://www.paddlepaddle.org.cn/ boxer 发表于 2023-7-29 09:16
装不了
ERROR: Could not find a version that satisfies the requirement paddlepaddle (from v ...
参考一下这个https://www.paddlepaddle.org.cn/ 感谢楼主分享,这个OCR识别还是挺不错的
页:
[1]
2