我正在使用Pytesseract,當我使用英語時它正在工作,但是當我開始使用俄語時。我有這樣的問題:從圖像中提取文本。 OCR
"TypeError: 'str' does not support the buffer interface". I've tried other language it also doesn't work.
這是我的代碼:
from PIL import Image
from pytesseract import image_to_string
k=image_to_string(Image.open("ff.jpg"), lang="rus")
print(image_to_string(Image.open("picture.jpg"), lang="rus"))
有人可以幫我解決這個問題呢?
感謝您的幫助) –