Hi,
I'm n00b for tesseract and wondering how I can solve my issue.
I'm trying to capture digits on gaming screenshots to track damages in a game and here is an example image of the digits.

Then I did `preprocess` the image (remove noises by thresholding) as follows:

Then I pass it to tesseract (tesseract 4.1.1-rc2-25-g9707) but it doesn't recognize as 115 but as `ns`
$ tesseract -l eng --psm 6 --dpi 300 -c tessedit_char_whitelist="0123456789" processed-res.png -
$ tesseract -l eng --psm 6 --dpi 300 processed-res.png -
nS
Anyone can advise me how to recognize digits? I don't have a font file for digits so wondering what else I can take....
Thanks!