suever / pydicom-experimental

pydicom test
0 stars 1 forks source link

VMs of "1-n 1" in data dictionary #129

Open suever opened 9 years ago

suever commented 9 years ago

From matthew....@gmail.com on May 30, 2013 03:18:49

While playing with the data dictionary, I noticed this:

In [19]: for key, val in dicom.datadict.DicomDictionary.items():
   ....:     if val[1] == '1-n 1':
   ....:         print key, val
   ....:         
2626048 ('US or SS or OW', '1-n 1', 'Gray Lookup Table Data', 'Retired',    'GrayLookupTableData')
2633734 ('US or OW', '1-n 1', 'LUT Data', '', 'LUTData')

I think these correspond to this kind of entry in the PS 3.6 table:

(0028,1200) Gray Lookup Table Data GrayLookupTableData US or SS 1-n RET
                                                       or OW    1

I'm not sure how these should be handled - is this right?

Original issue: http://code.google.com/p/pydicom/issues/detail?id=129