1

我正在寻找使用不透明度来表示强度的 4D 数据集(X、Y、Z、强度)。我还希望颜色也依赖于 Z 变量以更好地显示深度。

这是到目前为止的相关代码,我是Python新手:

.
.
.
x_list #list of x values as floats
y_list #list of y values as floats
z_list #list of z values as floats
i_list #list of intensity values as floats

.
.
.

import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')

Axes3D.scatter(ax, x_list, y_list, z_list)
.
.
.

那么我该怎么做呢?

我认为颜色可能是 z_list 和颜色图(例如 hsv)之间的线性关系,并且不透明度也可能是线性的, i_list/max(i_list) 或类似的东西。

4

1 回答 1

1

我会做类似以下的事情:

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

# choose your colormap
cmap = plt.cm.jet

# get a Nx4 array of RGBA corresponding to zs
# cmap expects values between 0 and 1
z_list = np.array(z_list) # if z_list is type `list`
colors = cmap(z_list / z_list.max())

# set the alpha values according to i_list
# must satisfy 0 <= i <= 1
i_list = np.array(i_list)
colors[:,-1] = i_list / i_list.max()

# then plot
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.scatter(x_list, y_list, z_list, c=colors)
plt.show()

这是一个例子x_list = y_list = z_list = i_list。您可以在此处选择任何颜色图或制作自己的颜色图: 在此处输入图像描述

于 2015-06-22T18:25:31.677 回答