码迷,mamicode.com
首页 > 编程语言 > 详细

python字符识别

时间:2019-09-08 18:17:37      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:ocr   一个   roc   image   print   class   img   result   字符   

 

tesserocr 是 python 的一个 OCR 库,它是对 tesseract 做的一层 Python API 封装,所以他的核心是tesseract。

使用

 

import tesserocr
from PIL import Image

img = Image.open(‘1.png‘)
result = tesserocr.image_to_text(img)
print(result)

 

python字符识别

标签:ocr   一个   roc   image   print   class   img   result   字符   

原文地址:https://www.cnblogs.com/i-shu/p/11487474.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!