Title exampleΒΆ

Description of the example.

../_images/sphx_glr_plot_read_dicom_001.png
# authors : some author
# license : BSD3

import matplotlib.pyplot as plt
import pydicom

print(__doc__)

ds = pydicom.read_file("CT_small.dcm")
plt.imshow(ds.pixel_array, cmap=plt.cm.bone)
plt.show()

Total running time of the script: ( 0 minutes 0.096 seconds)

Generated by Sphinx-Gallery