Python:Pytesseract无法识别一位数字

时间:2018-08-23 20:58:34

标签: python-3.x ocr python-tesseract

我有一个png,其中包含一长串从1到300的数字(当然不是按顺序排列)。我正在使用以下代码:-

try:
    import Image
except ImportError:
    from PIL import Image
import pytesseract



text = pytesseract.image_to_string(Image.open('udit2.png'))
print(type(text))

new_list = text.split()

with open("new_list_3.txt", "w") as g:
    for item in new_list:
        g.write(item + "\n")

我在网上搜索并发现更改了psm,但是将psm更改为10只能得到一位数字。我想要所有的数字,包括2位数字和3位数字。有什么解决办法

0 个答案:

没有答案