本文主要是介绍Python OCR字符识别,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、效果图
二、代码
import pytesseract
from PIL import Imagepytesseract.pytesseract.tesseract_cmd = 'C://Program Files (x86)/Tesseract-OCR/tesseract.exe'
english = pytesseract.image_to_string(Image.open('E://python/demo/english.png'))
chinese = pytesseract.image_to_string(Image.open('E://python/demo/chinese.png'),lang='chi_sim')print(english)
print(chinese)
三、说明
1.下载该文件使其支持中文字符识别
2.中文识别率较低,如果想获取较高识别精度,请自设计训练模型
这篇关于Python OCR字符识别的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!