以这张图片为例:
我想获取图像中的所有字符并相互比较,最后将相似的字符保存在一起。
答案 0 :(得分:0)
要从Image Try中提取所有字符,
import Image
from PIL import Image
from tesseract import image_to_string
print (image_to_string(Image.open('SampleImg.png')))
print (image_to_string(Image.open('SampleImg.png'), lang='eng'))
答案 1 :(得分:0)
使用contours!
非常快速和简单。