i am trying to convert a text image into text. I am using pytesser
in python for that I have already installed tesseract but on running even the following code:
from pytesser import *
im = Image.open('phototest.tif')
text = image_to_string(im)
print text
I get the following error:
Tesseract Open Source OCR Engine with Leptonica
Please call SetImage before attempting recognition.
and nothing gets printed nothing (no result). Any help on the above problem?