python 使用pytesseract图片识别

from PIL import Image
import pytesseract

text = pytesseract.image_to_string(Image.open('aiimg.png'),lang='chi_sim')
print(text)

猜你喜欢

转载自blog.csdn.net/weixin_40902527/article/details/85767249