PyTesseract安装与使用
Pytesseract1.pytesseract是google做的ocr库,可以识别图片中的文字,一般用在爬虫登录时验证码的识别.github主页安装方法:pip install pytesseract1.windows上要安装tesseract-ocr-setup-4.00.00dev.exe程序,然后设置环境变量这里有视频教程:https://www.bilibili.co...
Pytesseract
1.pytesseract是google做的ocr库,可以识别图片中的文字,一般用在爬虫登录时验证码的识别.github主页
安装方法:pip install pytesseract
1.windows上要安装tesseract-ocr-setup-4.00.00dev.exe程序,然后设置环境变量
这里有视频教程:https://www.bilibili.com/video/av20354957
2.innux上要安装tesseract-ocr库,
sudo add-apt-repository ppa:alex-p/tesseract-ocr
Demo:
import pytesseract
from PIL import Image
image = Image.open("1.jpg")
text = pytesseract.image_to_string(image,lang='chi_sim') #使用简体中文解析图片
print(text)
还是有误差.
参考博客:
https://www.cnblogs.com/hupeng1234/p/7136442.html
https://blog.csdn.net/dcba2014/article/details/78969658
http://www.inimei.cn/archives/770.html
https://blog.csdn.net/guzhenping/article/details/80122947
2.tesseract是ocr识别系统,用于训练图片,可以自己训练哦!
安装方法:(ubuntu16.04,其他版本没试过)
sudo add-apt-repository ppa:alex-p/tesseract-ocr
sudo apt-get update
参考博客:
https://www.cnblogs.com/cnlian/p/5765871.html
https://www.cnblogs.com/wzben/p/5930538.html
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
所有评论(0)