我正在尝试移动一个体素化的多维数据集,就像我在场景中对其应用转换矩阵一样。
我尝试了scipy.ndimage函数,但是它不起作用:
```python
import scipy
from mpl_toolkits.mplot3d import Axes3D
x, y, z = np.indices((27, 22, 61))
voxels = (x<28) & (y<23) & (z<62)
input = voxels
shift = -30.0
voxels=scipy.ndimage.shift(input, shift, mode='constant', cval=0.0, prefilter=True)
ax.voxels(voxels, edgecolor='k')
```