对批量图片进行OCR扫描,并输出图片的中有的文字,写一段python的代码
时间: 2023-06-10 16:05:47 浏览: 248
我们可以使用Python的OCR库pytesseract来实现图片的OCR扫描,以下是一段基本的代码:
```python
import pytesseract
from PIL import Image
# 读取图片
img = Image.open('test.png')
# 进行OCR扫描
text = pytesseract.image_to_string(img)
# 输出识别结果
print(text)
```
需要注意的是,需要先安装pytesseract库和Tesseract OCR引擎,并且需要将Tesseract的执行文件路径添加到系统环境变量中。同时,不同的图片格式和内容难易程度也会影响OCR扫描的准确性和效果。
阅读全文