已解决:attributeerror: ‘FreeTypeFont‘ object has no attribute ‘getsize‘

在运行yolov5时,报错:attributeerror: 'FreeTypeFont' object has no attribute 'getsize'

在网上搜索的结果大部分给出字体不对。。。之类的答案,

但通过仔细研究,发现该报错的报错原因不是字体不对,

下面就来看看我的解决办法吧

》》》

该问题已经得到解决,如果有帮助到你,记得点个赞支持一下哦~~~~~~~~~~~

已解决:attributeerror: ‘FreeTypeFont‘ object has no attribute ‘getsize‘_第1张图片

这是因为安装了新版本的 Pillow (10),pip install tf-models-official删除了该getsize 功能
,降级到 Pillow 9.5 解决了该问题

可以尝试以下方法进行解决:

pip install Pillow==9.5

你可能感兴趣的:(python,深度学习)