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.