1. 程式人生 > >ubuntu中pytesseract 安裝與使用示例

ubuntu中pytesseract 安裝與使用示例

1. 安裝 tesseract-ocr 包

安裝方法: sudo apt-get install tesseract-ocr

2. 安裝 PIL
PIL(python imaging library)是python中的影象處理庫

安裝方法: sudo apt-get install python-imaging


3. 安裝 pytesseract
安裝方法: pip install pytesseract


4. pytesseract使用示例

新建py檔案或者直接在終端中輸入以下程式:

import pytesseract
from PIL import Image

img = Image.open("./01.jpg")
code = pytesseract.image_to_string(img)
print code 

01.jpg:


驗證: