标签:html 配置 基于 detail net 安装库 target 代码 图片文字
参考:Python人工智能之图片识别,Python3一行代码实现图片文字识别
参考:Python实现截图
安装库:pillow(PIL 是 2.x 版本的,pillow 是 3.x 版本的)、pytesseract(需要修改配置)
代码实现:
>>> from PIL import ImageGrab >>> pic = ImageGrab.grab() >>> pic.save(‘D:/tmp/4.jpg‘)
安装库:pillow(PIL 是 2.x 版本的,pillow 是 3.x 版本的)、pytesseract(需要修改配置)
安装软件:tesseract-ocr
代码:中文(修改 lang 为 eng,可以用来识别英文)
from PIL import Image import pytesseract #上面都是导包,只需要下面这一行就能实现图片文字识别,中文识别 text=pytesseract.image_to_string(Image.open(‘D:/tmp/1.jpeg‘),lang=‘chi_sim‘) print(text)
标签:html 配置 基于 detail net 安装库 target 代码 图片文字
原文地址:https://www.cnblogs.com/alex-bn-lee/p/9218772.html