【发布时间】:2021-03-14 14:51:36
【问题描述】:
我正在尝试旋转 Matplotlib 中生成的 3D 体素图。具体来说,在保持坐标系不变的情况下,我想将图像绕 x 轴旋转 180 度。下面是 Matplotlib 文档中的一个示例,以及我想用我的情节进行的转换的可视化:
作为参考,这里是生成初始体素图的代码(也来自 Matplotlib 文档):
import matplotlib.pyplot as plt
import numpy as np
def explode(data):
size = np.array(data.shape)*2
data_e = np.zeros(size - 1, dtype=data.dtype)
data_e[::2, ::2, ::2] = data
return data_e
# build up the numpy logo
n_voxels = np.zeros((4, 3, 4), dtype=bool)
n_voxels[0, 0, :] = True
n_voxels[-1, 0, :] = True
n_voxels[1, 0, 2] = True
n_voxels[2, 0, 1] = True
facecolors = np.where(n_voxels, '#FFD65DC0', '#7A88CCC0')
edgecolors = np.where(n_voxels, '#BFAB6E', '#7D84A6')
filled = np.ones(n_voxels.shape)
# upscale the above voxel image, leaving gaps
filled_2 = explode(filled)
fcolors_2 = explode(facecolors)
ecolors_2 = explode(edgecolors)
# Shrink the gaps
x, y, z = np.indices(np.array(filled_2.shape) + 1).astype(float) // 2
x[0::2, :, :] += 0.05
y[:, 0::2, :] += 0.05
z[:, :, 0::2] += 0.05
x[1::2, :, :] += 0.95
y[:, 1::2, :] += 0.95
z[:, :, 1::2] += 0.95
fig = plt.figure()
ax = fig.gca(projection='3d')
ax.voxels(x, y, z, filled_2, facecolors=fcolors_2, edgecolors=ecolors_2)
plt.show()
对于初学者,我尝试翻转 x 坐标(使用 np.flip(x) 作为 x 坐标的输入;但是,这会扭曲光源,并且不会产生所需的结果。有关如何完成的任何输入非常感谢这种轮换。
【问题讨论】:
标签: python numpy matplotlib voxel mplot3d