你能告诉我如何在 C# 中读取所有的 dicom 标签及其 VR 吗?
问问题
7487 次
5 回答
2
在Evil Dicom中,这真的很简单:
//All the work is done with this constructor
DicomFile df = new DicomFile("fileToRead.dcm");
foreach (DicomObject d in df.DicomObjects)
{
Console.WriteLine(string.Format("I have a tag id of {0}, a VR of {1}", d.Tag.Id, d.VR));
}
//To access the data in a native format use .Data property
string name = df.PATIENT_NAME.Data;
于 2011-09-02T11:55:33.717 回答
1
当然,这完全取决于您使用的 DICOM 库。
使用 ClearCanvas 你会有这样的东西:
public foo(DicomFile dfile)
{
DicomAttributeCollection dac;
dac = dfile.DataSet;
DicomUid uid;
bool success;
success = dac[DicomTags.SopInstanceUid].TryGetUid(0, out uid);
if (success)
{
// The attribute was present in the collection. The variable uid
// contains the SopInstanceUid extracted from the DICOM file
}
}
具有不同 VR 的其他属性将使用 DicomTags 的适当字段和 VR 的适当 getter 函数来提取。例如,如果您想将 EchoTime(具有 DS 值表示的属性)提取为双精度,您将使用 TryGetFloat64 而不是 TryGetUid。TryGetFloat64(和其他类似函数)的第一个整数参数表示您想要获得的特定值。对于值为多重性为 1 的属性,此参数将始终为 0。对于 VM > 1 的属性,您可以通过将参数设置为 n-1 来提取第 n 个值。
于 2011-02-10T00:17:45.047 回答
1
我使用 LeadTools 实现它
private DicomDataSet _objLTDicomDataSet = null;
private void OpenDataset(string file, bool loadDefaultImage)
{
_objLTDicomDataSet =new DicomDataSet();
_objLTDicomDataSet.Load(file, DicomDataSetLoadFlags.None);
DicomElement element, _ele = null;
element = _objLTDicomDataSet.FindFirstElement(null, DicomTag.PatientName, true);
string tagName = _objLTDicomDataSet.GetStringValue(element, 0);
}
Leadtools 还支持获取各种标签的各种方法,您可以使用这些方法并读取 dicom 文件方法如下
DicomDataSet.GetRootElement
DicomDataSet.GetParentElement
DicomDataSet.GetChildElement
DicomDataSet.GetFirstElement
DicomDataSet.GetLastElement
DicomDataSet.GetPreviousElement
DicomDataSet.GetNextElement
了解更多信息LeadTools网站
于 2013-07-26T10:03:40.167 回答
1
如果您使用 GDCM + C# 绑定:
http://gdcm.sourceforge.net/html/SimplePrint_8cs-example.html
public class SimplePrint
{
public static void RecurseDataSet(File f, DataSet ds, string indent)
{
CSharpDataSet cds = new CSharpDataSet(ds);
while(!cds.IsAtEnd())
{
DataElement de = cds.GetCurrent();
// Compute VR from the toplevel file, and the currently processed dataset:
VR vr = DataSetHelper.ComputeVR(f, ds, de.GetTag() );
if( vr.Compatible( new VR(VR.VRType.SQ) ) )
{
uint uvl = (uint)de.GetVL(); // Test cast is ok
System.Console.WriteLine( indent + de.GetTag().toString() + ":" + uvl ); // why not ?
//SequenceOfItems sq = de.GetSequenceOfItems();
// GetValueAsSQ handle more cases than GetSequenceOfItems
SmartPtrSQ sq = de.GetValueAsSQ();
uint n = sq.GetNumberOfItems();
for( uint i = 1; i <= n; i++) // item starts at 1, not 0
{
Item item = sq.GetItem( i );
DataSet nested = item.GetNestedDataSet();
RecurseDataSet( f, nested, indent + " " );
}
}
else
{
System.Console.WriteLine( indent + de.toString() );
}
cds.Next();
}
}
public static int Main(string[] args)
{
string filename = args[0];
Reader reader = new Reader();
reader.SetFileName( filename );
bool ret = reader.Read();
if( !ret )
{
return 1;
}
File f = reader.GetFile();
DataSet ds = f.GetDataSet();
RecurseDataSet( f, ds, "" );
return 0;
}
}
于 2011-03-17T16:07:46.317 回答