如何解决德语无法识别的文本在多列小文本上没有输出的问题

时间:2019-04-22 12:31:30

标签: ocr python-tesseract

我正在尝试识别德语文字,但是没有输出

我在pytesseract中给出了德语语言。当我将语言设为英语时,会有不希望的输出(例如它无法识别正确的字符),我正在使用自动模式的psm

import pytesseract 
from PIL import Image 
img = Image.open('1.png')
txt = pytesseract.image_to_string(img,lang="deu")
txt = u' '.join(txt).encode('utf-8').strip()
print(txt)
with open('textoutput.txt','w') as f:
    f.write(txt)

我无法在控制台上获得胜利

0 个答案:

没有答案