Python:圖片轉文字pip install pytesseract ; pytesseract. pytesseract. tesseract_cmd

加入好友
加入社群
Python:圖片轉文字pip install pytesseract ; pytesseract. pytesseract. tesseract_cmd - 儲蓄保險王

pip install pytesseract
(安裝套件)

點此可以安裝
Tesseract installer for Windows
code:

# -*- coding: utf-8 -*-
"""
Created on Wed Sep 13 18:12:44 2023

@author: SavingKing
"""

import pytesseract
from PIL import Image
import os

# 指定 Tesseract 可执行文件的路径
pytesseract.pytesseract.tesseract_cmd = \
    r'C:\Users\AppData\Local\Programs\Tesseract-OCR\tesseract.exe'
"""
pytesseract.pytesseract.tesseract_cmd 是一个变量
用于指定 Tesseract OCR 的可执行文件tesseract.exe的路径
通过设置这个变量您可以告诉 pytesseract 
在哪里找到 Tesseract OCR 引擎以便进行图像文字识别

通常情况下您需要在代码中将 
pytesseract.pytesseract.tesseract_cmd 
设置为 Tesseract OCR 可执行文件的路径
"""
folder = "D:\Temp"
fname ="02.png"
fpath = os.path.join(folder,fname) 
# 開啟圖片
image = Image.open(fpath)

# 使用 Tesseract 进行文字識別
text = pytesseract.image_to_string(image)

# 輸出識別結果
print(text)

code:

Python:圖片轉文字pip install pytesseract ; pytesseract. pytesseract. tesseract_cmd - 儲蓄保險王

推薦hahow線上學習python: https://igrape.net/30afN

加入好友
加入社群
Python:圖片轉文字pip install pytesseract ; pytesseract. pytesseract. tesseract_cmd - 儲蓄保險王

儲蓄保險王

儲蓄險是板主最喜愛的儲蓄工具,最喜愛的投資理財工具則是ETF,最喜愛的省錢工具則是信用卡

You may also like...

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *