您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關Python怎么實現識別圖片內容的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
本文實例講述了Python實現識別圖片內容的方法。分享給大家供大家參考,具體如下:
python識別圖片內容。
這里我的環境為windows64位,python2.7.14
需要用到PIL模塊和tesseract模塊。
首先需要安裝pip包管理,安裝方法可參考附錄windows下安裝python包管理器pip
安裝PIL模塊:
pip install Pillow
tesseract模塊安裝:
pip install pytesseract
安裝識別引擎和中文語言包,點擊此處本站下載。
下載完成解壓:
1.雙擊tesseract-ocr-setup-3.02.02.exe安裝,安裝完成后,需要指定tesseract模塊識別引擎的程序路徑,打開python安裝路徑的模塊路徑,我的路徑為:E:\wamp\python\Lib\site-packages\,進入pytesseract,編輯pytesseract.py文件,修改 tesseract_cmd = 'tesseract'
的內容:
# tesseract_cmd = 'tesseract' # 修改為安裝Tesseract-OCR的真實路徑
tesseract_cmd = 'E:/wamp/python modules/Tesseract-OCR/tesseract.exe'
2.進入解壓包中的中文語言包,復制chi_sim.traineddata到Tesseract-OCR安裝目錄下tessdata文件夾下,我的路徑:E:\wamp\python modules\Tesseract-OCR\tessdata\chi_sim.traineddata
環境配置完成。
python代碼:
# -*- coding: UTF-8 -*- from PIL import Image import pytesseract # 識別中文 text = pytesseract.image_to_string(Image.open('chinese.png'),lang='chi_sim') print text # 識別英文 text = pytesseract.image_to_string(Image.open('english.png')) print text
附:windows下安裝python包管理器pip
windows下安裝python包管理器pip。
pip下載地址:https://pypi.python.org/pypi/pip#downloads
選擇 pip-9.0.1.tar.gz (md5, pgp)
下載完成解壓,這里我解壓到D:\python\pip-9.0.1,命令行進入D:\python\pip-9.0.1
cd D:\python\pip-9.0.1
安裝pip
python setup.py install
安裝完成,輸入pip list
查看是否成功
pip list
顯示下面信息代表安裝成功:
pip (9.0.1)
setuptools (28.8.0)
pip安裝模塊命令:
pip install xxx
感謝各位的閱讀!關于“Python怎么實現識別圖片內容”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。