Tesseract

Posted colden

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tesseract相关的知识,希望对你有一定的参考价值。

  1. 定义
    • Tesseract是一个将图像翻译成文字的OCR库(光学文字识别,Optical Character Recognition)
  2. 安装
    • sudo apt-get install tesseract-ocr
  3. 在python中调用Tesseract
    • pip install pytesseract
  • 在python代码中
    import pytesseract
    from PIL import Image
    image = Image.open(jpg)
    pytesseract.image_to_string(image)

以上是关于Tesseract的主要内容,如果未能解决你的问题,请参考以下文章

扫描名片 Tesseract 和 Leptonica iOS

遇到问题训练 tesseract

tesseract-ocr图片识别开源工具

tesseract 安装与训练(图像识别)

python 使用Python,OpenCV和Tesseract OCR引擎使用10行代码绕过Captcha

在 CMAKE 项目中使用 Tesseract