How to calculate space between dicom slices for MPR?

前端 未结 3 980
野性不改
野性不改 2021-02-09 20:10

Due to showing MPR view based on Dicoms. I\'ve made a 3D array from series of dicom files. And I show it from Coronal and Sagittal sides.

3条回答
  •  醉梦人生
    2021-02-09 20:43

    DICOM has an attribute called Spacing Between Slices (0018, 0088) that gives the distance between two adjacent slices (perpendicular to the image plane) and it also has an attribute called Slice Thickness (0018, 0050) that gives the thickness of the imaged slice (the image plane exists at the center of the slice, with half of the volume above the plane and half below). Image Position (Patient) (0020, 0032) and Image Orientation (Patient) (0020, 0037) are also useful attributes for computing spatial relationships between slices.

    For a more detailed explanation, see section C.7.6.2 of part 3 of the DICOM standard. (p. 409)

    WARNING: Please be aware that different vendors use the same dicom tags for addressing different things. For instance, the attribute Spacing Between Slices (0018, 0088) means two different things depending on the vendor. See this table to have a guide, and this thread for an explanation.

提交回复
热议问题