Try this
import pytesseract as ts
from PIL import Image
img=Image.open("NormalText.jpg")
text=ts.image_to_string(img)
print(text)
It works for me
CLICK HERE to find out more related problems solutions.
Try this
import pytesseract as ts
from PIL import Image
img=Image.open("NormalText.jpg")
text=ts.image_to_string(img)
print(text)
It works for me
CLICK HERE to find out more related problems solutions.