爬虫 图像识别引擎(牢饭吃到饱)
每天一个入狱小技巧
安装tesseract
windows exe安装配环境变量
MacOS brew install tesseract
Linux sudo apt-get install tesserac-ocr
|
打开cmd 输入以下内容
pip install pillow
pip install pytesseract
|
图片识别引擎的使用
通过pytesseract模块的image_to_string方法就能将打开图片的文件中的数据提取成字符串数据
from PIL import Image import pytesseract
im = Image.open('起名可以是中文.jpg') //该图片的"内容"非中文, 中文不识别
result = pytesseract.image_to_string(im)
print(result)
|
图片识别引擎的使用扩展
训练平台
作者: 我叫史迪奇
本文来自于:
https://sdq3.link/reptile-tesseract.html博客内容遵循 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 协议