我有200张图片,就像下面的一样,都是圆圈。在这些圈子中,有一些数字,例如1 / 2、2 / 3、50 / 1、1 / 50。我想提取所有数字并将其保存在Excel文件中。
我尝试使用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)