Answer the question
In order to leave comments, you need to log in
How to process this picture and remove email from it?
There is this picture:
I process it with code:
import os
os.chdir('D:/python27/lib/site-packages/pytesser')
try:
import Image
except ImportError:
from PIL import Image
from pytesser import *
im = Image.open('q.gif')
im = im.convert('L')
text = image_to_string(im)
print text
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question