PyTesseract
PyTesseract 是 OCR 的開發中的 python 包。
使用 PyTesseract 非常簡單:
try:
import Image
except ImportError:
from PIL import Image
import pytesseract
#Basic OCR
print(pytesseract.image_to_string(Image.open('test.png')))
#In French
print(pytesseract.image_to_string(Image.open('test-european.jpg'), lang='fra’))
PyTesseract 是開源的,可以在這裡找到。