用python写一个识别文字代码
时间: 2023-05-12 21:05:23 浏览: 114
卷积神经网络-使用Python实现的简单手写字识别卷积神经网络.zip
可以使用Python的OCR库,比如pytesseract或者opencv-python等,来实现文字识别。以下是一个使用pytesseract的示例代码:
```python
import pytesseract
from PIL import Image
# 读取图片
img = Image.open('test.png')
# 转换为灰度图像
img = img.convert('L')
# 识别文字
text = pytesseract.image_to_string(img)
# 输出识别结果
print(text)
```
需要注意的是,这种文字识别方法并不是100%准确,识别结果可能会有误差。
阅读全文