如何在python中创建3D高度图

时间:2015-06-08 10:36:14

标签: python matplotlib plot 3d surface

我有一个2D数组Z,它存储该元素位置的高度。除了使用我需要创建与Z大小相同的数组X和Y的方法here之外,是否有更简单的方法来创建3D高度图?

3D表面高度贴图类似于第一个曲面图here

2 个答案:

答案 0 :(得分:4)

即使我同意其他网格网站并不困难,我仍然认为Mayavi包提供了一个解决方案(检查函数surf

from mayavi import mlab mlab.surf(Z) mlab.show()

答案 1 :(得分:3)

这是matplotlib的代码

from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np

z = np.array([[x**2 + y**2 for x in range(20)] for y in range(20)])
x, y = np.meshgrid(range(z.shape[0]), range(z.shape[1]))

# show hight map in 3d
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.plot_surface(x, y, z)
plt.title('z as 3d height map')
plt.show()

# show hight map in 2d
plt.figure()
plt.title('z as 2d heat map')
p = plt.imshow(z)
plt.colorbar(p)
plt.show()

此处z的3D图: enter image description here

,这里是z的2D图: enter image description here