Maison  >  Article  >  développement back-end  >  有什么好用的OCR识别工具?

有什么好用的OCR识别工具?

WBOY
WBOYoriginal
2016-12-01 00:25:241219parcourir

  1. 想识别一个图片里的字符
    有什么好用的OCR识别工具?

2.试了github上的一个开源包 https://github.com/netpi/baid...
识别准确率不高
有什么好用的OCR识别工具?

3.请大家帮忙推荐好用的OCR识别包(php python node的都行)
谢谢

回复内容:

  1. 想识别一个图片里的字符
    有什么好用的OCR识别工具?

2.试了github上的一个开源包 https://github.com/netpi/baid...
识别准确率不高
有什么好用的OCR识别工具?

3.请大家帮忙推荐好用的OCR识别包(php python node的都行)
谢谢

python有个包叫pyocr

<code>from PIL import Image
from pyocr import pyocr # brew install tesseract

def pic_recognization(img):
    tools = pyocr.get_available_tools()
    res = tools[0].image_to_string(Image.open(img))
    return res</code>

识别数字实测还是蛮准的,就算有部分字母也行

捷速OCR文字识别软件

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn