Pytesseract OCR多个配置选项

6 浏览
0 Comments

Pytesseract OCR多个配置选项

我在使用pytesseract时遇到了一些问题。我需要配置Tesseract,使其能够接受单个数字,同时只能接受数字,因为数字零经常与字母'O'混淆。

像这样:

target = pytesseract.image_to_string(im,config='-psm 7',config='outputbase digits')

0