我正在尝试绘制随着时间推移而演变的3D线轨迹,并且我希望颜色改变以显示时间的流逝(例如从浅蓝色到深蓝色)。但是,使用matplotlib Line3DCollection
的教程明显缺乏; this is the closest我能找到,但我得到的只是一条白线。
这是我的代码。
import matplotlib.pyplot as plot
from mpl_toolkits.mplot3d.axes3d import Axes3D
from mpl_toolkits.mplot3d.art3d import Line3DCollection
import numpy as np
# X has shape (3, n)
c = np.linspace(0, 1., num = X.shape[1])[::-1]
a = np.ones(shape = c.shape[0])
r = zip(a, c, c, a) # an attempt to make red vary from light to dark
# r, which contains n tuples of the form (r,g,b,a), looks something like this:
# [(1.0, 1.0, 1.0, 1.0),
# (1.0, 0.99998283232330165, 0.99998283232330165, 1.0),
# (1.0, 0.9999656646466033, 0.9999656646466033, 1.0),
# (1.0, 0.99994849696990495, 0.99994849696990495, 1.0),
# ...,
# (1.0, 1.7167676698312416e-05, 1.7167676698312416e-05, 1.0),
# (1.0, 0.0, 0.0, 1.0)]
fig = plot.figure()
ax = fig.gca(projection = '3d')
points = np.array([X[0], X[1], X[2]]).T.reshape(-1, 1, 3)
segs = np.concatenate([points[:-1], points[1:]], axis = 1)
lc = Line3DCollection(segs, colors = r)
ax.add_collection3d(lc)
ax.set_xlim(-0.45, 0.45)
ax.set_ylim(-0.4, 0.5)
ax.set_zlim(-0.45, 0.45)
plot.show()
但是,这就是我得到的:
只是一堆白线段,颜色没有变化。我究竟做错了什么?谢谢!
答案 0 :(得分:4)
你的代码工作正常,这里有点样本。基本上,这是您自定义X集的代码。
fig = plot.figure();
ax = fig.gca(projection = '3d')
X = [(0,0,0,1,0),(0,0,1,0,0),(0,1,0,0,0)]
points = np.array([X[0], X[1], X[2]]).T.reshape(-1, 1, 3)
r = [(1.0, 1.0, 1.0, 1.0), (1.0, 0.75, 0.75, 1.0), (1.0, 0.5, 0.5, 1.0), (1.0, 0.25, 0.25, 1.0), (1.0, 0.0, 0.0, 1.0)];
segs = np.concatenate([points[:-1], points[1:]], axis = 1)
ax.add_collection(Line3DCollection(segs,colors=list(r)))
plot.show()
情节如下:
答案 1 :(得分:1)
哇,事实证明问题是X
实际上不是形状(3, n)
,而是(3, n^10)
之类的东西,但我只是绘制n
点,因此颜色似乎永远不会改变(为什么r
似乎有非常小的间隔......当我只绘制250个时,有58,000个点。
是的,这是一个错误。对于那个很抱歉;它现在工作正常。