在nifti文件中添加一个维度

问题描述 投票:0回答:1

我有一个nifti文件(.nii),形状为 (112, 176, 112). 我想给它增加另一个维度,使它成为... (112, 176, 112, 3). 当我尝试 img2 = np.arange(img).reshape(112,176,112,3) 我得到了一个错误。np.reshapenp.arange 或其他方式?

码。

import numpy as np
import nibabel as nib

filepath = 'test.nii'  
img = nib.load(filepath)
img = img.get_fdata()

img = np.arange(img).reshape(112,176,112,3)

img = nib.Nifti1Image(img, np.eye(4))
img.get_data_dtype() == np.dtype(np.int16)
img.header.get_xyzt_units()
nib.save(img, 'test_add_channel.nii')

错误:

---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-16-f6f2a2d91a5d> in <module>
      8 print(img.shape)
      9 
---> 10 img2 = np.arange(img).reshape(112,176,112,3)
     11 
     12 img = nib.Nifti1Image(img, np.eye(4))

ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
python numpy reshape nifti nibabel
1个回答
1
投票

你可以这样做。

import numpy as np

img = np.random.rand(112, 176, 112)  # Your image
new_img = img.reshape((112, 176, 112, -1))  # Shape: (112, 176, 112, 1)
new_img = np.concatenate([new_img, new_img, new_img], axis=3)  # Shape: (112, 176, 112, 3)

也许还有其他更好的方法,但上面的代码能让你得到你想要的结果。

© www.soinside.com 2019 - 2024. All rights reserved.