3

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

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

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

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

from dicom import read_file

ds = read_file("01.dcm")

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

1 回答 1

2

一些图像 [特别是 CT] 具有指定的多个窗口级别以突出显示不同的特征。如果您的值在 20 张图像之间都相同,则选择两组中的一组(理想情况下,让用户选择它们)。检查属性 (0028,1055), Window Width 和 Center Explanation,看是否有信息。

于 2016-01-18T22:36:34.470 回答