在运行了以下程序后不显示图像:
train_set_x_orig, train_set_y, test_set_x_orig, test_set_y, classes = load_dataset()
index = 25
plt.imshow(train_set_x_orig[index])
解决办法:
在后面加上plt.show()就会显示图像了 ,plt.imshow()函数对图像进行处理,并显示其格式。plt.show()则是显示plt.imshow()处理后的函数。
train_set_x_orig, train_set_y, test_set_x_orig, test_set_y, classes = load_dataset()
index = 25
plt.imshow(train_set_x_orig[index])
plt.show()
代码运行结果: