I have a stack of DICOM images that I'm reading in with the Python dicom package:
my_dicom = dicom.read_file('my_dicom.dcm')
my_dicom = my_dicom.pixel_array
My image is a actually a stack of 256 images, each with 3 channels and with dimensions of 256 height, and 256 width.
So I try:
my_dicom.shape
and get
(3, 256, 256, 256)
What is the order of the entries in the dimension output? I have a 1 in 6 change of picking the correct hypothesis. The documentation is not illuminating.