I'm trying to fetch score info from a Dota2 screenshot (disregard the "wrong" boxes on the borders)
but I can't seem to get a good enough accuracy
I'm applying these filters to the image
bw_image = cv2.bitwise_not(img)
bw_image = cv2.cvtColor(bw_image, cv2.COLOR_BGR2GRAY)
and this config to tesseract
config = ("-l eng --oem 1 --psm 7")
In the screenshot provided the ROI was resized to (50,50) but resizing doesn't impact accuracy consistently
How can I improve my results? I searched how to train/improve a tesseract model but it seems to much work for what I want.