The script assumes that the glob gets the file names in the proper order. Also the 3-d volume created will have uniform spacing in X, Y, and Z. If the Z spacing is not the same as X and Y, you can call vol.SetSpacing with whatever the spacing values should be.
Here's a SimpleITK python script that can read in a stack of PNG images and output a 3d Nifti image:
The script assumes that the
glob
gets the file names in the proper order. Also the 3-d volume created will have uniform spacing in X, Y, and Z. If the Z spacing is not the same as X and Y, you can callvol.SetSpacing
with whatever the spacing values should be.