美文网首页我爱编程
python pytesseract

python pytesseract

作者: 程序员不务正业 | 来源:发表于2018-04-13 16:15 被阅读314次

python下没能成功安装pytesseract库

跑到在Mac下用brew安装tesseract,想绕一下让python调用shell进行图片识别

于是安装:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install tesseract

使用

tesseract test.png output
8C8E77C0-624F-475C-87E4-9F1C5A4238FB.png
tesseract test.png output
4AA9DF51-CC98-4B6C-99DB-695D99F21074.png

哈哈,成功

然后..........................

不甘心python不能直接使用
于是再跑了一遍

sudo pip install pytesseract
# ocr图像识别
def ocr(img):
    img = Image.open(img)
    img.show()
    rs = pytesseract.image_to_string(img)
    print('测试'+rs)
    return rs

额,竟然可以使用了

安装pytesseract依赖tesseract吗????

相关文章

网友评论

    本文标题:python pytesseract

    本文链接:https://www.haomeiwen.com/subject/adwckftx.html