handle case when there is no sequence delim but null's #118
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We've came across an error with missing sequence delimiter at the end of the file.
I happens quite often (in a range of hundreds of cases). I suspect dcm4chee version 1.4.xxx
This is limited to pixel data elements with compressed TS as only then it is encoded as a sequence
This class of errors is divided between those two file endings in hex
That can be fixed with dcmconv and combination of options like so:
+Ep --ignore-parse-errors try to recover from parse errors
+rd --replace-wrong-delim replace wrong sequence/item delimitation items
Hovever the second fil ending I've encountered a lot is like this:
Note: Ending of JPLL pixel payload is 0xffd9
All things like element length are ok, just there is too much padding (as in missing tag fffe,e0dd (4b + 4b of zeros)
This reults in CorruptedData error and critical failure. That file won't be parsed nor converted+fixed.
I'm presenting a possible fix for this situation.
newTag is read as 0x0000,0x000 which is DCM_GenericGroupLength with VR UL and has to be handled in dcmpixelseq parser