'Image' object has no attribute 'shape'
时间: 2023-08-05 14:06:24 浏览: 189
python报错: 'list' object has no attribute 'shape'的解决
5星 · 资源好评率100%
这个错误是因为在处理图像时,使用了一个没有shape属性的Image对象。根据引用[2]中的参考链接,这个错误可能是因为在transforms.RandomErasing操作之前没有将图像转换为tensor格式。解决办法是将transforms.RandomErasing操作置于transforms.ToTensor()之后。这样可以确保图像被正确地转换为tensor格式,从而具有shape属性。[2]
阅读全文