是否可以使用枕头将文本写入图像,然后提取出该文本?

时间:2018-12-28 01:14:00

标签: python image-processing python-imaging-library

基本上,我想使用Pillow Python3将文字写到图像上。在将文本写入图像之前/之后,是否可以做一些事情或做一些预处理,使我无需使用Tesseract之类的东西就能读回文本?

1 个答案:

答案 0 :(得分:0)

为此使用pytesser

from pytesser import * 
from PIL import Image
image = Image.open(filename)
print(image_to_string(image))