把一个图片用torch变成四维张量
时间: 2024-05-07 15:16:11 浏览: 170
可以使用以下代码将一个图片用torch变成四维张量:
```python
import torch
from PIL import Image
# Load image
img = Image.open('image.jpg')
# Convert image to tensor
img_tensor = torch.tensor(img).unsqueeze(0)
# Print shape of tensor
print(img_tensor.shape)
```
这个代码将一个名为image.jpg的图片加载到一个PIL Image对象中。然后,使用torch.tensor()将图像转换为张量,并使用unsqueeze()函数将其添加到第0个维度,从而创建一个四维张量。最后,使用print()函数打印张量的形状,以验证其是否为四维张量。
阅读全文