Hi, I have a very recent version of Tesseract on my Windows machine.
tesseract v5.0.0-alpha.20201127 I am facing a problem in recognizing the letter I. I am using openCV and pytesseract on Windows 10. # Testing Letter I image = cv2.imread('I.jpg') gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) gray = cv2.resize( gray, None, fx = 10, fy = 10, interpolation = cv2.INTER_CUBIC) blur = cv2.GaussianBlur(gray, (5,5), 0) ret, thresh = cv2.threshold(blur, 0, 255, cv2.THRESH_OTSU | cv2.THRESH_BINARY_INV) text = pytesseract.image_to_string(gray, config='-c tessedit_char_whitelist=0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ -l eng --psm 10 --oem 1') print("text = :", text) It does not print the letter I. I have also attached the image file. [image: I.JPG] Will appreciate any help, suggestion. Thanks & Regards, Saroj Panda -- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To unsubscribe from this group and stop receiving emails from it, send an email to tesseract-ocr+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/tesseract-ocr/CAP_H3mgFGacHJyKyzpco_aXOuFzb1UbrFxWSXVNtq1bBF3qG-A%40mail.gmail.com.