You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should parse and unpack Elements into native data structures that represent the elements. gradienthealth/dicom-protos already lays the foundataion to generate golang-native messages that represent each attribute, so this repository should populate those data structures. In other words, the below code should happen here and should likely be autogenerated
// Code to unpack PhotometricInterpretation from a DataSetel, errFind=ds.FindElementByTag(dicomtag.PhotometricInterpretation)
pi, errGet:=el.GetString()
// errors should be handledphotomericInterpretation=&attrPB.PhotometricInterpretation{Value: pi}
The text was updated successfully, but these errors were encountered:
We should parse and unpack
Element
s into native data structures that represent the elements. gradienthealth/dicom-protos already lays the foundataion to generate golang-native messages that represent each attribute, so this repository should populate those data structures. In other words, the below code should happen here and should likely be autogeneratedThe text was updated successfully, but these errors were encountered: