如何从图像中提取文本

时间:2019-05-10 05:27:29

标签: python opencv image-processing python-tesseract

我有200张图片,就像下面的一样,都是圆圈。在这些圈子中,有一些数字,例如1 / 2、2 / 3、50 / 1、1 / 50。我想提取所有数字并将其保存在Excel文件中。

Input 1

我尝试使用tesseract,但无法正常工作。

到目前为止,这是我的代码。

import pytesseract
from PIL import Image

value = Image.open("picture/train/test4.PNG")
text = pytesseract.image_to_string(value, config='')    
print("text present in images:", text)

0 个答案:

没有答案