Read .mhd/.mha/.raw metaio image/volume with SimpleITK Jan 1, 2021 Here’s the table of contents: Use ReadImage to load and convert to a numpy array Use ReadImage to load and convert to a numpy array import SimpleITK as sitk volume = sitk.ReadImage("./image.mhd"); volume_np = sitk.GetArrayFromImage(volume); print (volume_np.shape); See!