3
如何在3d軸中繪製imshow()
圖像?我試着用這個post。在那篇文章中,曲面圖與imshow()
圖相同,但事實上並非如此。爲了說明,這裏我把不同的數據:用matplotlib在3d中繪製imshow()圖像
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
import numpy as np
# create a 21 x 21 vertex mesh
xx, yy = np.meshgrid(np.linspace(0,1,21), np.linspace(0,1,21))
# create vertices for a rotated mesh (3D rotation matrix)
X = xx
Y = yy
Z = 10*np.ones(X.shape)
# create some dummy data (20 x 20) for the image
data = np.cos(xx) * np.cos(xx) + np.sin(yy) * np.sin(yy)
# create the figure
fig = plt.figure()
# show the reference image
ax1 = fig.add_subplot(121)
ax1.imshow(data, cmap=plt.cm.BrBG, interpolation='nearest', origin='lower', extent=[0,1,0,1])
# show the 3D rotated projection
ax2 = fig.add_subplot(122, projection='3d')
ax2.plot_surface(X, Y, Z, rstride=1, cstride=1, facecolors=plt.cm.BrBG(data), shade=False)
這裏是我的陰謀:
'facecolors = plt.cm.BrBG(data/data.max())'竅門解決了我的問題。 'contourf'給出了相同的情節。 – Raj
填充輪廓'contourf'的好處在於,您可以完全控制「vmin」和「vmax」等顏色限制,您可以顯示正確範圍的顏色條,並且可以指定平滑度/上面的例子)。映射到表面上的'imshow'是一個好主意,但它是一種黑客,而contourf實際上是在3D中支持的。 –
@Ed Smith使用'contourf',不使用'Z' - 從技術上來說,圖像*是* 3D圖形,但未能完全控制其位置,這種解決方案並不實用。 – user1735003