Adding to the above messages, you can start with the CT-Scan.mhd file downloaded from here and display / save 29 images with the following code (provided that you have both the header and the raw files loaded). in the current directory):
import SimpleITK as sitk import matplotlib.pylab as plt ct_scans = sitk.GetArrayFromImage(sitk.ReadImage("training_001_ct.mhd", sitk.sitkFloat32)) plt.figure(figsize=(20,16)) plt.gray() plt.subplots_adjust(0,0,1,1,0.01,0.01) for i in range(ct_scans.shape[0]): plt.subplot(5,6,i+1), plt.imshow(ct_scans[i]), plt.axis('off')

Here is the same .mhd file for computed tomography, which is read using SimpleITK and animated: 
source share