Я использую код ниже. Но тессеракт не может даже увидеть этот простой образ.
from PIL import Image
import pytesseract
image_file = Image.open("question.png")
image_file = image_file.convert('1') # convert image to black and white
image_file.save('question.png')
text = pytesseract.image_to_string(image_file, lang = 'eng',config='-psm 6')
print(text)
Примечание:
[1.] Пытался превратить Pic в черно-белый
[2.] Используемый псм
ВОПРОС: Как правильно распознать данное изображение?
Обновление:
Я использовал этот код сейчас:
from PIL import Image
import pytesseract
image_file = Image.open('purple.png')
image_file = image_file.convert('L') # convert image to black and white
image_file.save('question.png')
image_file = Image.open('question.png') #without this line also the output is same
text = pytesseract.image_to_string(image_file, lang = 'eng',config='-psm 6')
print(text)
Выход:
Пожалуйста, помогите мне, почему это не работает.