我想分别提取图像中的所有字符..什么是最好的方法呢?

时间:2019-01-24 11:05:28

标签: python opencv ocr tesseract

以这张图片为例:

take this as an example image

我想获取图像中的所有字符并相互比较,最后将相似的字符保存在一起。

2 个答案:

答案 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

非常快速和简单。