91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python如何實現OCR識別

發布時間:2022-03-29 17:26:11 來源:億速云 閱讀:362 作者:iii 欄目:移動開發

這篇文章主要講解了“Python如何實現OCR識別”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Python如何實現OCR識別”吧!

Python實現OCR識別:pytesseract

Python常用pytesseract進行圖片上的文字識別,即OCR識別,完整的代碼比較簡單,只要下面一行即可,但是實際使用時環境配置上容易出錯。

from PIL import Image
import pytesseract
 
text = pytesseract.image_to_string(Image.open("/Users/alice/Documents/Develop/PythonCode/textinphoto.PNG"))
print(text)

因此使用前,需要先安裝pillow和pytesseract依賴包。

然而運行時仍然報錯,raise TesseractNotFoundError()
pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it"s not in your path

原因是因為未安裝tesseract,然后使用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的方式查看是否成功,出現版本號則為安裝成功

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,圖片如下

Python如何實現OCR識別

運行成功,產生output.txt文檔,里面的文本為圖片中識別出的文字。

Python如何實現OCR識別

感謝各位的閱讀,以上就是“Python如何實現OCR識別”的內容了,經過本文的學習后,相信大家對Python如何實現OCR識別這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

自贡市| 内乡县| 衢州市| 武威市| 桃园市| 旅游| 阳山县| 崇仁县| 孟村| 巫山县| 乡宁县| 仁寿县| 红桥区| 上林县| 台中市| 桐乡市| 灌阳县| 延安市| 黑河市| 林芝县| 鄂托克旗| 石屏县| 利津县| 万年县| 饶平县| 万源市| 梁河县| 甘孜| 微博| 思南县| 锦屏县| 威海市| 蚌埠市| 离岛区| 筠连县| 本溪市| 陵水| 南昌市| 宝鸡市| 双辽市| 武汉市|