I am new to text extraction.when i try to extract text from a png image using pytesseract as
from PIL import Image
import pytesseract
s=Image.open('d:\\test.png')
print(pytesseract.image_to_string(s))
I am getting error as
Is this the problem of image(test.png).the test.png is the image of a number plate.Should i need to install anything else.