如何在matplotlib中将图像添加到3d图的X-Y轴?

时间:2018-11-01 23:23:37

标签: python matplotlib

我正在尝试在Matplotlib中将图像添加到3d图表的xy轴上。顶部会显示一个条形图,但目前我正在尝试弄清楚如何仅显示图像。这是我的代码,尽管限制是我想要的,但到目前为止返回的只是空白的3d轴。我尝试将图像导入为jpeg和png,并且可以通过绘图将其显示在2d轴上。我尝试按照以下问题中的代码进行操作:Add background image to 3d plot,但是在如何从目录中导入图像而不是使用get_sample_data上遇到了麻烦。

'''''
import matplotlib.image as mpimg
import matplotlib.pyplot as plt
img = mpimg.imread('ukmap.jpg')

fig=plt.figure()
ax1=fig.add_subplot(111,projection='3d')
ax1.imshow(img, zorder=1, extent = [-10, 1.77, 49.88, 58.7] , alpha = 0.8)
'''''

0 个答案:

没有答案