在Python中使用pytesseract庫來識別圖像中的文本非常簡單。首先,你需要安裝pytesseract庫和Tesseract OCR引擎。然后,可以按照以下步驟使用pytesseract來識別圖像中的文本:
import pytesseract
from PIL import Image
image = Image.open('image.png')
text = pytesseract.image_to_string(image)
print(text)
上述代碼將輸出識別出的文本內容。你也可以傳遞一些可選參數給image_to_string()函數,以指定識別語言、配置文件等。
注意:在使用pytesseract之前,請確保已經正確安裝Tesseract OCR引擎,并且已經將其路徑添加到環境變量中。