pytesseract怎么进行英文识别?
时间: 2024-01-28 19:05:20 浏览: 216
pytesseract文字识别库
3星 · 编辑精心推荐
要使用 pytesseract 进行英文识别,可以通过设置语言参数来实现。具体方法是在调用 pytesseract.image_to_string() 函数时,将 lang 参数设置为 'eng',如下所示:
```
import pytesseract
from PIL import Image
img = Image.open('example.png')
text = pytesseract.image_to_string(img, lang='eng')
print(text)
```
这将使用 pytesseract 进行英文识别,并将识别结果打印出来。注意,需要先安装 tesseract OCR 引擎,并将其添加到系统 PATH 环境变量中。
阅读全文