-
Notifications
You must be signed in to change notification settings - Fork 230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sequence Delimitation Item not present in the element list #143
Labels
Milestone
Comments
I used your example : https://rawgit.com/cornerstonejs/dicomParser/master/examples/dumpWithDataDictionary/index.html |
This sounds like a bug - the intent of the design is to expose all of the
detail of the underlying bitstream and SequenceDelimitationItem should be
present as one of the items in a sequence of undefined length. I seem to
recall some other bugs related to undefined length sequence parsing - it
would love to see someone review this in depth, add tests and refactor if
necessary
…On Fri, Oct 1, 2021 at 9:23 AM Bryan Cool ***@***.***> wrote:
It does look like it used to be that way a long time ago (here
<f63b408>
are the changes that introduced the change). @chafey
<https://github.com/chafey> any thoughts on this one?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#143 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAJVXWVZJIN3WDTDENVG74DUEW75PANCNFSM4MNFTS5A>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
Note that this will be a breaking change, as it will change the reported length of the SQ element. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When using the method parseDicom on DICOM containing a SQ element with undefined length I have the feeling it's not correct to not return the SequenceDelimitationItem as an item of said element
In this example : x00080096 (ReferringPhysicianIdentificationSequence) is a Sequence of undefined length
It is followed by a SequenceDelimitationItem, but it's nowhere to be found.
I think it should be part of the
items
list of the current tag like the ItemDelimitationItem ("xfffee00d") is for Item ("xfffee000")Is the current behaviour the expected behaviour or do you confirm this is bug ?
Thank you for your work
The text was updated successfully, but these errors were encountered: