python Python的中matplotlib.pyplot.imshow画灰度图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python的中matplotlib.pyplot.imshow画灰度图相关的知识,希望对你有一定的参考价值。

training_x, training_y, test_x, test_y = dataset.load_mnist_data(1000, 100)
im = training_x[0]
# 绘画灰度图的四种方法
plt.subplot(221); plt.imshow(im, cmap=plt.cm.gray)
plt.subplot(222); plt.imshow(im, cmap=plt.cm.gray_r)
plt.subplot(223); plt.imshow(im, cmap='gray')
plt.subplot(224); plt.imshow(im, cmap='gray_r')
plt.show()

以上是关于python Python的中matplotlib.pyplot.imshow画灰度图的主要内容,如果未能解决你的问题,请参考以下文章

python 在Python的中合并两个或以上字典

Python中树的中序遍历返回列表

python中字典dict的中的copy和deepcopy

python怎么装matplotlib

python matplotlib怎么用

python安装matplotlib:python -m pip install matplotlib报错