我使用mplot3d
绘制了一系列点:
import pylab as p
import mpl_toolkits.mplot3d.axes3d as p3
fig = p.figure()
ax = fig.add_subplot(111, projection='3d')
ax.scatter([1], [0], [0], c='r', marker='^', picker=5)
ax.scatter([0], [1], [0], c='g', marker='^', picker=5)
ax.scatter([0], [0], [1], c='b', marker='^', picker=5)
然后添加一个选择器功能:
def onpick(event):
ind = event.ind
print ind
fig.canvas.mpl_connect('pick_event', onpick)
最后将其绘制:
p.show()
有没有一种方法可以从我单击的标记中获取3D坐标?
到目前为止,我可以在
ax.scatter()
上使用的列表中获得该点的索引,但是由于我多次使用ax.scatter()
,所以并不会减少它的位置,这必须是这种方式(例如,我使用不同的颜色)。问候
最佳答案
您可以使用event.artist的_offsets3d属性获取坐标数据,然后使用ind获取拾取点:
def onpick(event):
ind = event.ind[0]
x, y, z = event.artist._offsets3d
print x[ind], y[ind], z[ind]
关于python - 如何在mplot3d(matplotlib + python)中获取所选对象的属性?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10424517/