【发布时间】:2010-09-08 10:38:15
【问题描述】:
我正在使用 openDicom.net 读取 dicom 标签,如下所示:
string tag = "";
string description = "";
string val_rep = "";
foreach (DataElement elementy in sq)
{
tag = elementy.Tag.ToString();
description = elementy.VR.Tag.GetDictionaryEntry().Description;
val_rep = elementy.VR.ToString();
}
如何读取 dicom 标签值?
【问题讨论】:
-
为什么这被否决了?这是一个合法的问题。