模块 'PIL.TiffTags' 没有属性 'IFD'
module 'PIL.TiffTags' has no attribute 'IFD'
当我使用 Pytesseract 识别图像中的文本时,出现属性错误
module 'PIL.TiffTags' has no attribute 'IFD'
可能是什么原因造成的?
这是我 运行 在 google colab
上的代码
import cv2
import pytesseract
from google.colab.patches import cv2_imshow
img = cv2.imread("img.png")
img = cv2.resize(img, (400, 450))
cv2_imshow(img)
text = pytesseract.image_to_string(img)
print(text)
cv2.waitKey(0)
cv2.destroyAllWindows()
尝试检查您的 Pillow 版本,如图所示 here. That combined with 解决方案(安装 Tesseract)对我有用。
当我使用 Pytesseract 识别图像中的文本时,出现属性错误
module 'PIL.TiffTags' has no attribute 'IFD'
可能是什么原因造成的?
这是我 运行 在 google colab
上的代码import cv2
import pytesseract
from google.colab.patches import cv2_imshow
img = cv2.imread("img.png")
img = cv2.resize(img, (400, 450))
cv2_imshow(img)
text = pytesseract.image_to_string(img)
print(text)
cv2.waitKey(0)
cv2.destroyAllWindows()
尝试检查您的 Pillow 版本,如图所示 here. That combined with