如何在Mac上将tesseract OCR从英语(默认)更改为另一种语言?

时间:2019-05-08 19:25:07

标签: python ocr tesseract

我正在Mac上的python上进行ocr工作。但是,当我运行程序时,pytesseract只识别英文文本,而不能识别其他语言。

我的代码如下:

from PIL import Image
import pyscreenshot as ImageGrab
import pytesseract


if __name__ == '__main__':
    im = ImageGrab.grab(bbox=(128,118,430,266))
    im.save('34.png')
    im.show()
im = Image.open('34.png')
text = pytesseract.image_to_string(im, lang = 'I should need Italian here')
print(text)

我需要一种使ocr与其他语言一起工作的方法。有人能帮我吗?

0 个答案:

没有答案