python matplotlib这么同时显示多张图片在同一个图中

CIFAR10读进来的图像的的维度是(50000,32,32,3),插入以下代码就可以用了,

img_test = images_test[:32, :, :, :]

选取前32张显示

plt.figure()
for i in range(1,32):
    plt.subplot(4,8,i)
    plt.imshow(img_test[i-1])
plt.show()

python matplotlib这么同时显示多张图片在同一个图中_第1张图片

这就是显示的结果

在代码中加入下面两行则没有坐标了

plt.figure()
for i in range(1,32):
    plt.subplot(4,8,i)
    plt.imshow(img_test[i-1])
    plt.xticks([])
    plt.yticks([])
plt.show()

python matplotlib这么同时显示多张图片在同一个图中_第2张图片

你可能感兴趣的:(python matplotlib这么同时显示多张图片在同一个图中)