I'm trying to use pytesseract to recognize digital numbers from images as following:
i tried following code
text=pytesseract.image_to_string(img, lang='eng',
config='--psm 13 --oem 3 -c tessedit_char_whitelist=0123456789')
print(text)
it gives me
"ae"
I tried oem=1 and it's still the same.
for your reference my version is as follows:
pytesseract.get_tesseract_version()
LooseVersion ('4.0.0-beta.1')
Any help would be appreciated, including alternative libraries.
