标签: python-3.x text webcam live
当前这是我的代码:
import pytesseract from PIL import Image img = Image.open('test.jpg') text = pytesseract.image_to_string(img) print(text)
此代码从图像中读取文本并打印出字母。我想学习如何在网络摄像头运行时获取文本。