美文网首页
Tesseract Ocr文字识别

Tesseract Ocr文字识别

作者: 小猪会飞 | 来源:发表于2018-08-03 00:10 被阅读0次

    Tesseract Ocr文字识别

    环境 windows10 + python 3.6 + tesseract 4.0.0-beta.1

    pip install pytesseract 
    
    

    安装tesseract orc

    下载地址:https://github.com/UB-Mannheim/tesseract/wiki 点击“tesseract-ocr-w64-setup-v4.0.0-beta.1.20180414.exe”下载安装。

    将tesseract.exe 加入环境变量

    测试代码

    from PIL import Image
    import pytesseract
     
    path = "img\\text-img.png"
     
    text = pytesseract.image_to_string(Image.open(path), lang='chi_sim')
    print(text)
    

    相关文章

      网友评论

          本文标题:Tesseract Ocr文字识别

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