计算值标签 DICOM

Calculating value tag DICOM

我有一组 20 张 DICOM 图像,我需要显示这 20 张图像的平均值 Window 和中心。

使用 pydicom 我得到这些标签的值,其中 20 张图像的值相等,WindowWidth = ['56', '3200']WindowCenter = ['29', '700']

如何计算这个平均值到 Window 和中心?

我的简化代码,如果有帮助的话:

from dicom import read_file

ds = read_file("01.dcm")

print ds.WindowWidth # = ['56', '3200']
print ds.WindowCenter # = ['29', '700']

一些图像 [特别是 CT] 指定了多个 window 级别来突出显示不同的特征。如果 20 张图像之间的值都相同,则选择两组中的一组(理想情况下,让用户选择它们)。查看attribute (0028,1055)、Window Width and Center Explanation,看看那里有没有信息。