登录 注册
当前位置:主页 > 资源下载 > 21 > Python的OCR库Pyocr.zip下载

Python的OCR库Pyocr.zip下载

  • 更新:2024-07-27 10:20:02
  • 大小:617B
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

Pyocr 是 OCR 引擎的简单 Python 封装,支持 Tesseract 和 Cuneiform 等。支持 Python 2.7 和 3.x,要求 Pillow。 示例代码: import Image import sys from pyocr import pyocr tools = pyocr.get_available_tools()[:] if len(tools) == 0: print("No OCR tool found") sys.exit(1) print("Using '%s'" % (tools[0].get_name())) tools[0].image_to_string(Image.open('test.png'), lang='fra', builder=TextBuilder()) 标签:Pyocr