Reputation: 245
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
Reputation: 4013
You might want to have a look at these links:
How to compare coordinates of different series 1
How to compare coordinates of different series 2
DICOM attributes used for calculating affine transformation
Recommended reading on DICOM in general and segregation of orientations
Upvotes: 1
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