Calculate Spacing Between Slices

计算切片间距的方法: 对于CT扫描出的断层图像,没有存储Spacing Between Slices信息,但可以利用位置信息计算得到。 需要先读取相邻两层切片的位置信息,假设为pos1和pos2,然后计算两个位置的距离即为切片间距。 ...

四月 30, 2021 · 1 分钟 · 142 字

Running Dcm4chee Arc Light on Docker

首先需要安装Docker 安装完成后,拉取以下3个仓库 1 2 3 $ docker pull dcm4che/slapd-dcm4chee:2.4.56-23.1 $ docker pull dcm4che/postgres-dcm4chee:13.1-23 $ docker pull dcm4che/dcm4chee-arc-psql:5.23.1 拉取完成后,就可以启动服务了,这里有两种方式,一种是使用Docker命令行依次启动上面3个服务,不过比较麻烦,也容易出错,另一种是直接使用Docker Copmose,相对来说要简单很多。这里就直接使用 Docker Compose的方式。 ...

二月 3, 2021 · 1 分钟 · 380 字

Private Dicom Element

规则 私有 Tag (gggg, xxxx) Group number (gggg) 必须为奇数 (odd),并且 (0001, xxxx),(0003, xxxx),(0005, xxxx),(0007, xxxx),(FFFF, xxxx) 不允许使用。 ...

一月 21, 2021 · 1 分钟 · 298 字

DICOM图像像素相关Tag说明

常用图像像素相关的一些Tag Tag VR Keyword (0028,0002) US Samples Per Pixel (0028,0004) CS Photometric Interpretation (0028,0006) US Planar Configuration (0028,0010) US Rows (0028,0011) US Columns (0028,0100) US Bits Allocated (0028,0101) US Bits Stored (0028,0102) US High Bit (0028,0103) US Pixel Representation (7FE0,0010) OB/OW Pixel Data 相关Tag说明 Sample Per Pixel Samples per Pixel (0028,0002) is the number of separate planes in this image. One and three image planes are defined. Other numbers of image planes are allowed, but their meaning is not defined by this Standard. ...

六月 15, 2020 · 4 分钟 · 1948 字

三维图形矩阵变换

前言 由于我是从事医疗行业软件开发的,所以必不可少的会和图像打交道,最近刚刚好在做一个图像旋转相关的功能,借此又复习(预习)了一下线性代数,趁着没忘赶紧做一下笔记。 ...

五月 5, 2020 · 5 分钟 · 2086 字