DICOM数据方向
DICOM中定义了一个以病人为基础的坐标系①,该坐标系是笛卡尔空间直角坐标系。
DICOM中的跟图像相关的字段为:
[0010,2210]( Anatomical Orientation Type ) = BIPED 二足动物(默认)
= QADRUPED 四足动物
以人举例,标准定义的方向是
+X 右肩膀到左肩膀
+Y 前胸到后背
+Z 足到头
由此可知,该坐标系是右手坐标系。
[7FE0,0010]( Pixel Data ),图像存储方式为从左到右,从上到下。它是行优先存储(第1行、第2行、第3行……),可以直接当作称为DICOM像素数组②。
PixelData的尺寸由Rows和Columns定义:
[0028,0010]( Rows ) = 行数,即图像的高度,ImageHeight
[0028,0011]( Columns ) = 列数,即图像的宽度,ImageWidth
[0028,0030]( Pixel Spacing ) 像素间距,单位是毫米(mm)
例如PixelSpacing=0.625\0.815,表示水平像素间距为0.625mm,垂直间距为0.815mm。
[0020,0032]( Image Position )3个浮点数,标记了左上角像素点(第1个像素点,即第0行第0列的像素)在空间中的位置。
[0020,0037]( Image Orientation )3个浮点数为1组,共2组。分别标记了第一行与坐标轴的余弦值和第一列与坐标轴的余弦值。
[0028,0004]( Photometric Interpretation )略
[0028,0100]( Bits Allocated )略
[0018,5100]( Patient Position )标记了患者的体位。
HFP Head First-Prone 头先,俯卧
HFS Head First-Supine 头先,仰卧
HFDR Head First-Decubitus Right 头先,右侧卧
HFDL Head First-Decubitus Left 头先,左侧卧
FFDR Feet First-Decubitus Right 脚先,右侧卧
FFDL Feet First-Decubitus Left 脚先,左侧卧
FFP Feet First-Prone 脚先,俯卧
FFS Feet First-Supine 脚先,仰卧
LFP Left First-Prone 左臂先,俯卧
LFS Left First-Supine 左臂先,仰卧
RFP Right First-Prone 右臂先,俯卧
RFS Right First-Supine 右臂先,仰卧
AFDR Anterior First-Decubitus Right 胸先,右侧卧
AFDL Anterior First-Decubitus Left 胸先,左侧卧
PFDR Posterior First-Decubitus Right 背先,右侧卧
PFDL Posterior First-Decubitus Left 背先,左侧卧
特别说明:患者体位不太精确,而且操作者有可能会出现输入错误体位。