Hello,
I've an image which was de-skewed (Rotated) and then segmented in the form of lines. >From Segmentation I have got the image '1234567.png' by using Gimp i cropped it to 'one.jpg' I've been trying to extract the text from the segmented image and its not being extracted through it :( I've attached the segmented image. I've used the tesseract ocr code as shown below to extract text: """ from PIL import Image from pytesser import * image_file = 'one.jpg' im = Image.open(image_file) text = image_to_string(im) text = image_file_to_string(image_file) text = image_file_to_string(image_file, graceful_errors=True) print "=====output=======\n" print text """ Please do help. Thanks in Advance :) -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/tesseract-ocr. To view this discussion on the web visit https://groups.google.com/d/msgid/tesseract-ocr/81c1d6a0-377f-4fc1-95e2-55b321bcd455%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

