有什么简单的方法来 OCR 图像吗?
它基本上只使用 Times New Roman 字体,并且是一个小矩形 (220x86)。文字统一,大小相同,没有奇怪的字符,AZaz09,八种不同的颜色(每行一种)。
有什么简单的方法可以做到这一点吗?
It basically only uses the font Times New Roman and is a small rectangle (220x86). Text is uniform, same size, no strange characters, AZaz09, eight different colors (one per line).
is there any easy way to do this?
最好的开源 OCR 是 Tesseract。它是可训练的,因此您可以以 times new roman 为目标,尽管它已经提供了类似文本的训练。您可以通过使用 os.popen() 与 python 一起使用它
The best Open Source OCR is Tesseract. It is trainable, so you can target times new roman, although it already comes with training for similar text. You can use it with python by using
os.popen()