您现在的位置是:课程教程文章
python如何识别中英文
2023-12-18 18:10课程教程文章 人已围观
python识别中英文的方法:
1、使用“pip install pytesseract”命令行命令下载安装ocr库
pip install pytesseract
2、下载ocr语言模型,放到ocr库所在文件下
3、编写翻译语句,将图片中的中文识别出来
from PIL import Image import pytesseract resDict = pytesseract.image_to_boxes(Image.open('images/example3.png'),) print(resDict)
识别结果:
原图:
更多Python知识,请关注:Python自学网!!
课程教程:python如何识别中英文上一篇:python如何求解多次方程
下一篇:没有了