為什麼這個圖檔的數字,pytesseract 會漏字(第5個數字,44)?
import PIL
from PIL import Image
import pytesseract
image = Image.open('OCRs/pft_post_001.png')
display(image)
print('image size: {}X{}'.format(image.width, image.height))
txt = pytesseract.image_to_string(image)
print(txt)
請問我要如何解決這個問題呢?謝謝