Pytesseract无法识别某些数字

时间:2020-09-23 13:22:12

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

因此,在将此标记为重复之前,我尝试了在其他SO帖子上可以找到的所有方法,所以这是我的最后选择。

这是我正在运行的代码:

ocr_result = pytesseract.image_to_string(image, config='--psm 8 -c tessedit_char_whitelist=0123456789')

当图像如下所示时: Being detected as not a number tesseract认为它不是0-9

在另一个测试中,图像如下所示:enter image description here,但被标识为0(零)。我不知道如何使这些图像看起来更像它们的数字。

图片尺寸:94x94 图片编辑代码:

converter = ImageEnhance.Color(image)
image = converter.enhance(0)
converter = ImageEnhance.Contrast(image)
image = converter.enhance(5)

0 个答案:

没有答案