我是python的新手所以我试图编写一个suduko解算器,这样我就可以在完成程序的过程中学习python。 主要的想法是,导入图片,让程序读取它,并解决suduko,然后打印出答案。我见过类似的事情,但我不能让程序读取图像并理解一切都在哪里,尝试pyterresact但我得到了很多错误
for el in lst:
if el not in x:
print el
这是我收到的错误信息
from PIL import Image
import pytesseract
im = Image.open("sudukopic.png")
text = pytesseract.image_to_string(im, lang = 'eng')
print(text)
答案 0 :(得分:0)