Tesseract对日期的认可

时间:2017-10-02 02:13:54

标签: 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'))

1 个答案:

答案 0 :(得分:0)

尝试使用long设置为tesseract的{​​{1}}命令行,并获得正确的日期psm

enter image description here

12表示为08/21/2017设置--psm 12

您可以使用命令segmentation mode找出测试中使用的Sparse text with OSD支持的tesseract --help

希望这可以提供帮助。