module 'PIL.Image' has no attribute 'Transpose'是啥意思
时间: 2023-09-23 16:11:35 浏览: 579
无需降级scipy的情况下解决AttributeError: module ‘scipy.misc’ has no attribute ‘imread’,imresize,imsave等问题
这个错误提示意味着在使用Pillow库中的Image模块时调用了Transpose属性,但该模块中并没有Transpose属性。正确的属性应该是transpose(小写字母t)。可以将代码中的Transpose改为transpose来解决这个错误。例如:
```python
from PIL import Image
image = Image.open('example.jpg')
image = image.transpose(Image.FLIP_LEFT_RIGHT)
```
阅读全文