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
Some Data Elements with VR AT have a Value Multiplicity of 1-n, meaning they can have more than one value stored inside. However, the code and the comment on the function hint at an undefined return if the value length is strictly different then 4 bytes long.
examples of attribute of VR AT with a VM of 1-n :
(0028,0009) Frame Increment Pointer
(0028,000A) Frame Dimension Pointer
possible solutions :
change the signature of the function to accept an index parameter like the other parse function of this module and return the first value by default to keep retro compatibility
change the behavior of the function to return an array of values corresponding to all the attribute tags liste in the element (breaking changes)
The text was updated successfully, but these errors were encountered:
Some Data Elements with VR AT have a Value Multiplicity of 1-n, meaning they can have more than one value stored inside. However, the code and the comment on the function hint at an undefined return if the value length is strictly different then 4 bytes long.
code in question :
dicomParser/src/dataSet.js
Line 275 in b7755a8
examples of attribute of VR AT with a VM of 1-n :
(0028,0009) Frame Increment Pointer
(0028,000A) Frame Dimension Pointer
possible solutions :
The text was updated successfully, but these errors were encountered: