有没有人使用 opendicom.net 库进行 dicom 图像解析。在示例代码中,它指的是以下几行:
DataElementDictionary dataElementDictionary = new DataElementDictionary();
UidDictionary uidDictionary = new UidDictionary();
try
{
dataElementDictionary.LoadFrom("**dicom-elements-2004.dic**",
DictionaryFileFormat.BinaryFile);
uidDictionary.LoadFrom("**dicom-uids-2004.dic**",
DictionaryFileFormat.BinaryFile);
}
catch (Exception dictionaryException)
{
//Console.Error.WriteLine ("Problems processing dictionaries:\n" +
// dictionaryException);
return;
}
我在哪里可以获得文件 dicom-elements-2004.dic 和 dicom-uids-2004.dic?我没有在网站上得到这些。请帮忙