我是Python新手。我正在嘗試創建一個Python OCR程序,並且正在爲它進行在線教程。這裏是我使用的推薦代碼: from PIL import Image
from pytesser import *
image_file = 'menu.tif'
im = Image.open(image_file)
text = image_to_string(im)
text = imag
我正在寫一個與tesseract-ocr一起工作的腳本,我從屏幕獲取文本,然後我需要將它與字符串進行比較。問題是,即使我確定字符串是相同的,比較失敗,我怎麼能使我的代碼工作? 這裏我的代碼: import pyscreenshot as pss
import time
from pytesser import image_to_string
buy=str("VENDI")
buyNow
from PIL import Image
from pytesser import *
image_file = 'E:\Downloads\menu.tiff'
im = Image.open(image_file)
text = image_to_string(im)
text = image_file_to_string(image_file)
text = image_fi