mac使用pytesseract

import locale
locale.setlocale(locale.LC_ALL, 'C')
import pytesseract
import pathlib
import traceback
from PIL import Image
file_path = str(pathlib.Path.cwd().joinpath("picture/3.jpg"))
img = Image.open(file_path) #先创建image对象
try:
text = pytesseract.image_to_string(img,lang="eng") #直接转化成string,更多参数可以查看文档 print(text)
except:
print(traceback.format_exc())
上一篇:[python] python3.6 安装 pytesseract 出错


下一篇:windows端口被占用