我有一组 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']