标签: tesseract python-tesseract
Date
您好,我正在尝试使用Tesseract识别收据中的日期。此代码适用于提取收据上的总数,但似乎不适用于日期,因为它打印出空。 我在这里错过了什么才能让它发挥作用?
这是我的代码:
from PIL import Image import pytesseract img = Image.open('Rec.jpg') print(pytesseract.image_to_string(img, config='-psm 6'))
答案 0 :(得分:0)
尝试使用long设置为tesseract的{{1}}命令行,并获得正确的日期psm。
long
tesseract
psm
12表示为08/21/2017设置--psm 12。
12
08/21/2017
--psm 12
您可以使用命令segmentation mode找出测试中使用的Sparse text with OSD支持的tesseract --help。
segmentation mode
Sparse text with OSD
tesseract --help
希望这可以提供帮助。