The following code is unable to detect the single letter like "A" and "Y" in this case. programming lang: python required text lang: spanish library: easyocr image : https://i.stack.imgur.com/Xs5ri.jpg
import easyocr
#img = cv2.imread('12.jpg')
reader = easyocr.Reader(['en'])
res = reader.readtext('12.jpg', detail=0, paragraph=False,low_text=0.2)
for resx in res:
print(resx)