user762098
user762098

Reputation: 245

how to spatially order files in a dicom data sequence?

Do the filenames associated with a DICOM image series (from a single scan) match the spatial ordering? What I mean is if the patient was scanned “head first” is 000000.dcm more “superior” than 000001.dcm which is more superior than 000003.dcm etc? If the answer is no, how is spatial ordering established?

Upvotes: 2

Views: 2134

Answers (2)

cneller
cneller

Reputation: 1582

No, the file names are rarely associated with the spatial ordering.

The best thing to use is the image position (patient) (0020,0032) and image orientation (patient) (0020,0037) values to get the geometry of each image. From there, you can "order" things how you wish, spatially.

Upvotes: 3

Related Questions