Python實(shí)現(xiàn)OCR識別之pytesseract案例詳解
Python實(shí)現(xiàn)OCR識別:pytesseract
Python常用pytesseract進(jìn)行圖片上的文字識別,即OCR識別,完整的代碼比較簡單,只要下面一行即可,但是實(shí)際使用時環(huán)境配置上容易出錯。
from PIL import Image import pytesseract text = pytesseract.image_to_string(Image.open('/Users/alice/Documents/Develop/PythonCode/textinphoto.PNG')) print(text)
因此使用前,需要先安裝pillow和pytesseract依賴包。
然而運(yùn)行時仍然報錯,raise TesseractNotFoundError()
pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it's not in your path
原因是因?yàn)槲窗惭btesseract,然后使用pip3 install tesseract之后仍然提示錯誤,如圖:
alicedembp:~ alice$ pip3 install tesseract Requirement already satisfied: tesseract in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (0.1.3) alicedembp:~ alice$ tesseract -bash: tesseract: command not found
無法使用,往上找了很多教程,說是要使用brew安裝,于是得以解決,步驟為:
- 先安裝brew
alicedembp:~ alice$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- 再使用brew安裝leptonica
alicedembp:~ alice$ brew install leptonica
- 使用brew安裝tesseract
alicedembp:~ alice$ brew install tesseract
- 安裝成功,通過命令行tesseract -v的方式查看是否成功,出現(xiàn)版本號則為安裝成功
alicedembp:~ alice$ tesseract Usage: tesseract --help | --help-extra | --version tesseract --list-langs tesseract imagename outputbase [options...] [configfile...] OCR options: -l LANG[+LANG] Specify language(s) used for OCR. NOTE: These options must occur before any configfile. Single options: --help Show this help message. --help-extra Show extra help for advanced users. --version Show version information. --list-langs List available languages for tesseract engine. alicedembp:~ alice$ tesseract -v tesseract 4.0.0 leptonica-1.78.0 libgif 5.1.4 : libjpeg 9c : libpng 1.6.36 : libtiff 4.0.10 : zlib 1.2.11 : libwebp 1.0.2 : libopenjp2 2.3.1 Found AVX2 Found AVX Found SSE
接下來就可以直接使用了,使用如下代碼:
alicedembp:~ alice$ tesseract /Users/alice/Documents/Develop/PythonCode/textinphoto.png /Users/alice/Documents/Develop/PythonCode/output.txt
打開textinphoto.PNG的圖片,將文字輸出到output.txt,圖片如下
運(yùn)行成功,產(chǎn)生output.txt文檔,里面的文本為圖片中識別出的文字。
到此這篇關(guān)于Python實(shí)現(xiàn)OCR識別之pytesseract案例詳解的文章就介紹到這了,更多相關(guān)python OCR識別之pytesseract內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
- python中的斷言(assert語句)
- Python+Selenium+Pytesseract實(shí)現(xiàn)圖片驗(yàn)證碼識別
- python assert斷言的實(shí)例用法
- Python中優(yōu)雅使用assert斷言的方法實(shí)例
- python pytesseract庫的實(shí)例用法
- 解決Python3.8運(yùn)行tornado項(xiàng)目報NotImplementedError錯誤
- Python Tornado核心及相關(guān)原理詳解
- Python Tornado之跨域請求與Options請求方式
- Python Tornado 實(shí)現(xiàn)SSE服務(wù)端主動推送方案
相關(guān)文章
python如何使用雙線性插值計算網(wǎng)格內(nèi)數(shù)據(jù)
這篇文章主要介紹了python如何使用雙線性插值計算網(wǎng)格內(nèi)數(shù)據(jù)問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2023-08-08Python創(chuàng)建Getter和Setter的方法詳解
Getters?和?Setters?是幫助我們設(shè)置類變量或?qū)傩远鵁o需直接訪問的方法,這篇文章主要和大家介紹了如何在Python中創(chuàng)建Getter和Setter,需要的可以參考下2023-10-10Python 實(shí)現(xiàn)刪除某路徑下文件及文件夾的實(shí)例講解
下面小編就為大家分享一篇Python 實(shí)現(xiàn)刪除某路徑下文件及文件夾的實(shí)例講解,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-04-04pytorch 同步機(jī)制的實(shí)現(xiàn)
在PyTorch中,當(dāng)多個算子和內(nèi)核被并行執(zhí)行時,PyTorch 通過 CUDA 的流和事件機(jī)制來管理并發(fā)和同步,本文就來介紹一下pytorch 同步機(jī)制,具有一定的參考價值,感興趣的可以了解一下2024-09-09Python使用窮舉法求兩個數(shù)的最大公約數(shù)問題
這篇文章主要介紹了Python使用窮舉法求兩個數(shù)的最大公約數(shù)問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-12-12