Python快速识别文字
时间: 2024-03-06 07:25:59 浏览: 49
Python文字识别
Python可以使用很多库来实现文字识别,其中比较常用的是Tesseract和OpenCV。以下是使用Tesseract的示例代码:
```python
# 导入模块
import pytesseract
from PIL import Image
# 打开图片
image = Image.open('example.png')
# 使用Tesseract进行文字识别
text = pytesseract.image_to_string(image, lang='chi_sim')
# 输出识别结果
print(text)
```
需要注意的是,使用Tesseract进行中文文字识别时需要安装中文语言包,并将`lang`参数设置为`'chi_sim'`。
阅读全文