您好,登錄后才能下訂單哦!
本篇內容介紹了“python的pytesseract庫怎么使用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
1、pytesseract需要與安裝在本地的tesseract-ocr.exe文件一起使用。
2、需要注意的是,安裝時必須選擇中文包,默認只支持英文識別。
pip install pytesseract
import pytesseract from PIL import Image text = pytesseract.image_to_string(Image.open(r"d:Desktop39DEE621-40EA-4ad1-90CC-79EB51D39347.png")) print(text)
識別結果輸出
Using Tesseract OCR with Python # import the necessary packages from PIL import Image import pytesseract import ergperse import cv2 import os # construct the argument parse and parse the arguments ap = argparse.ArgunentParser() ap.add_argument("-i", "--image", required-True, help="path to input image to be OCR"d") ap.add_argument("-p", "--preprocess", typesstr, default="thresh", helpe"type of preprocessing to be done") args = vars (ap.parse_args())
實例擴展:
Python使用pytesseract庫識別圖片文字
準備
首先需在本機安裝Tesseract客戶端,然后安裝pytesseract庫:
pip install pytesseract
沒安裝過PIL的也要安裝一下,因為所調用的第一個參數是由Image類返回:
pip install PILLOW
實例
import pytesseract from PIL import Image img = Image.open("D://aa.jpg") text = pytesseract.image_to_string(img,) print(text)
“python的pytesseract庫怎么使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。