如何在 Jupyter Notebook 中将 numpy 2D 数组显示为灰度图像?
要在 Jupyter Notebook 中将 2D 数组显示为灰度图像,我们可以进行以下步骤
步骤
设置图形尺寸并调整子图之间的填充。
使用 numpy 创建随机数据。
将数据显示为图片,即在 2D 正则栅格上,使用 灰色 色图。
要显示图形,使用 show() 方法。
示例
from matplotlib import pyplot as plt import numpy as np # Set the figure size plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True # Random data points data = np.random.rand(5, 5) # Plot the data using imshow with gray colormap plt.imshow(data, cmap='gray') # Display the plot plt.show()
输出
它将产生以下输出 −
广告