我正在尝试获取pytesseract以获取每个数字的位置。 但是,它似乎不适用于此图像,但适用于原始未裁剪的图像。我尝试使用psm-13配置,但是仍然无法检测到任何东西
d = pytesseract.image_to_string(Image.open('page2crop.jpg'))
print(d)
答案 0 :(得分:0)
这可能是use pytesseract to recognize text from image的副本。
一些用户提到投票最高的答案将返回空结果。但是,有人报告说以下解决方案有效。我还没有测试。请检查并发表评论。
用dinesh-chandra-kumawat来投票最多的答案。
import pytesseract
from PIL import Image
text = pytesseract.image_to_string(Image.open("temp.jpg"), lang='eng',
config='--psm 10 --oem 3 -c tessedit_char_whitelist=0123456789')
print(text)