AttributeError: 'Image' object has no attribute 'flatten'
时间: 2023-11-09 17:07:23 浏览: 245
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误通常是因为使用了 PIL 库中的 Image 类型,而该类型没有 flatten() 方法。如果想要将图像展平,可以使用 numpy 库中的 flatten() 方法。
相关问题:
1. 如何使用 numpy 库中的 flatten() 方法展平图像?
2. PIL 库中的 Image 类型有哪些
阅读全文