Pytesser set character whitelist

半腔热情 提交于 2019-12-06 05:10:26

问题


Does anyone know how to set the character whitelist for Pytesseract? I want it to only output A-z and 0-9. Is this possible? I have the following:

img = Image.open('test.jpg')
result = pytesseract.image_to_string(img, config='-psm 6')

I'm getting other characters like / for a 1 so I would like to limit the options of possible characters.


回答1:


You can accomplish that with the below line. Or you can setup the config file for tesseract to do the same thing Limit characters tesseract is looking for

pytesseract.image_to_string(question_img, config="-c tessedit_char_whitelist=0123456789abcdefghijklmnopqrstuvwxyz -psm 6")

I am sure there are other ways to get it work, but this is what worked for me.



来源:https://stackoverflow.com/questions/43705481/pytesser-set-character-whitelist

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!