我正在尝试识别德语文字,但是没有输出
我在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)
我无法在控制台上获得胜利