实现代码:如果pytesseract识别的图片内容为空,则返回空值
时间: 2023-03-28 12:02:22 浏览: 243
python opencv判断图像是否为空的实例
如果 pytesseract 识别的图片内容为空,那么它会返回一个空字符串。你可以通过以下代码来实现:
```
import pytesseract
from PIL import Image
img = Image.open('image.png')
text = pytesseract.image_to_string(img)
if not text:
print('识别结果为空')
else:
print(text)
```
阅读全文