python如何辨識圖片中的文字,這裡給個案例並附上詳細步驟:
#模組包的安裝:
1、安裝PIL:pip install Pillow
2、安裝pytesser3:pip install pytesser3
3、安裝pytesseract:pip install pytesseract
##4、安裝autopy3: 先安裝wheel:pip install wheel下載autopy3-0.51.1-cp36-cp36m-win_amd64.whl【點選開啟連結】#執行指令:pip install Eamd64.whl【點選開啟連結】#執行指令:pip install E :\360安全瀏覽器下載\autopy3-0.51.1-cp36-cp36m-win_amd64.whl5、安裝Tesseract-OCR:百度直接搜尋Tesseract-OCR下載即可#這裡#這裡
#這裡要說明的是安裝Tesseract-OCR後,其不會被預設加入到環境變數path
解決方案有兩種:(先找到Tesseract-OCR安裝資料夾,再找到tesseract.exe檔)
我這裡的絕對路徑是:D:\python\Tesseract-OCR\tesseract.exe
①將此路徑加入環境變數path(但我是這麼做的,但PyCharm仍舊報錯)②找到pytesseract.py檔我這裡是C:\Users\admin\AppData\Local\Programs\Python\Python36\Lib\site-packages \pytesseract\pytesseract.py
將檔案中的tesseract_cmd修改為上方的絕對路徑進入正題,如何辨識影像中文字
#上原圖:(這句是海上鋼琴師中的一句經典台詞)
接下來我們要透過python的pytesseract來辨識圖片中的字符了
# _*_ coding:utf-8 _*_ import pytesseract from PIL import Image __author__ = 'admin' im = Image.open(r'C:\Users\admin\Desktop\example.png') print(pytesseract.image_to_string(im))###效果圖#############
以上是python如何辨識圖片中的文字的詳細內容。更多資訊請關注PHP中文網其他相關文章!