pytorch展示图像
时间: 2023-06-30 19:10:38 浏览: 90
展示图像的代码示例如下:
```python
import matplotlib.pyplot as plt
import numpy as np
from PIL import Image
# 读取图像
img = Image.open('path/to/image.jpg')
# 将图像转换为numpy数组
img_np = np.array(img)
# 展示图像
plt.imshow(img_np)
plt.show()
```
其中,`path/to/image.jpg`为你要展示的图像的路径。这段代码使用了matplotlib和PIL库来实现图像的读取和展示。
阅读全文