Jupyter Notebook에서 2D 배열을 회색조 이미지로 표시하려면 다음 단계를 수행할 수 있습니다.
단계
-
Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.
-
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()
출력
다음 출력을 생성합니다 -