def image_to_string(image):
"""
?????????? 4 ???
:param image:
:return:
"""
global font
test1 = convert_black_white(image)
text = str()
for each in cut(test1):
for num in range(10):
if create_pix_tables(each) == font[num]:
text += str(num)
break
return text
评论列表
文章目录