使用体素尺寸保存Nibabel图像

时间:2019-04-03 17:26:07

标签: python image nifti nibabel

无法在nibabel的NiftiHeader中设置图像体素尺寸。如何为给定图像设置特定的体素尺寸?

我需要在nibabel中保存具有特定体素尺寸的图像。

image = nib.load('some_image')
c = np.array(image.get_fdata())
x = nib.Nifti1Image(c, image.affine)
nib.save(x, 'something.nii.gz')

如何使用某些新的体素尺寸保存成像器 ?

1 个答案:

答案 0 :(得分:0)

保存之前,您需要更改header information

image = nib.load('some_image')
header_info = image.header
print(header_info)

# change the voxel dimensions to [2,2,2]
header_info['pixdim'][1:4]  = [2,2,2]

c = np.array(image.get_fdata())

# Use the new `header_info` before writing
x = nib.Nifti1Image(c, image.affine, header_info)
nib.save(x, 'something.nii.gz')