Skip to content
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

Behaviour change between ITK 5.3 and 5.4 with DICOM spacing #4794

Open
seanm opened this issue Aug 2, 2024 · 6 comments
Open

Behaviour change between ITK 5.3 and 5.4 with DICOM spacing #4794

seanm opened this issue Aug 2, 2024 · 6 comments
Labels
type:Bug Inconsistencies or issues which will cause an incorrect result under some or all circumstances

Comments

@seanm
Copy link
Contributor

seanm commented Aug 2, 2024

Further to some discussions in #4647 and #4521, we still have a situation that isn't quite clear to us, and since those are merged already, we thought we'd create a new ticket.

Basically, there is a change in behaviour between ITK 5.3 and 5.4 that we are trying to understand if it's a bug or deliberate & correct.

If we query a DICOM file for its image spacing information, we get different results depending on:

  • using itk::ImageSeriesReader vs using itk::GDCMImageIO
  • having 1 DICOM file in the folder vs having multiple

A small C++ test case is attached: inconsistency_in_spacing.zip

It uses a DICOM file named D_CLUNIE_CT1_J2KR1.dcm, from the GDCM test suite I think, but from David Clunie's collection ultimately I suppose.

In ITK 5.3:

Number of files ImageSeriesReader GDCMImageIO
Single [0.661468, 0.661468, 1] [0.661468, 0.661468, 1]
Multiple [0.661468, 0.661468, 1] [0.661468, 0.661468, 1]

Notice everything agrees: the z spacing is 1.

In ITK 5.4 / master:

Number of files ImageSeriesReader GDCMImageIO
Single [0.661468, 0.661468, 5] [0.661468, 0.661468, 5]
Multiple [0.661468, 0.661468, 1] [0.661468, 0.661468, 5]

Notice now everything does not agree.

The change from 1 to 5 is presumably deliberate from #4521.

But then shouldn't that lone 1 (in the bottom left) also be 5?

Thanks.

@seanm seanm added the type:Bug Inconsistencies or issues which will cause an incorrect result under some or all circumstances label Aug 2, 2024
@issakomi
Copy link
Member

issakomi commented Aug 2, 2024

The behavior change may probably be related to these lines introduced in the commit malaterre/GDCM@836f7a7. In fact ImageHelper::SecondaryCaptureImagePlaneModule variable seems to affect the several MediaStorage classes above, maybe there should be logic + break before? I don't know. Even if I am on the list of co-authors, I didn't make
the change, we started with very simple proposal https://github.com/InsightSoftwareConsortium/ITK/pull/4120/files. If I remember correctly this particular change was done by the GDCM owner, but I am not sure.

BTW, the 'Multiple' series is just duplicated file, both with the same Instance UID (this is invalid) and z-spacing is just a matter of fallback (it is 0 or undefined).

@issakomi
Copy link
Member

issakomi commented Aug 3, 2024

I mean:

bb

FYI, I will not do any PRs or other actions related to this issue

Edit: if it is still not clear: this looks for me as a fall-through bug in switch, the value of ImageHelper::SecondaryCaptureImagePlaneModule (hard-coded to true in GDCM IO) should not affect other IODs.

@issakomi
Copy link
Member

@thewtex
Copy link
Member

thewtex commented Aug 23, 2024

CC @dclunie

zivy added a commit to zivy/SimpleITK-Notebooks that referenced this issue Aug 26, 2024
The spacing parameter on the z axis when reading a single image
changed between ITK 5.3 and 5.4. Issue with change raised here:
InsightSoftwareConsortium/ITK#4794

This is due to the underlying change in GDCM
(MediaStorage::SecondaryCaptureImageStorage deriving the z spacing
from this information):
malaterre/GDCM@836f7a7
@pieper
Copy link
Contributor

pieper commented Sep 25, 2024

I looked into this some more and I'm thinking now that the new behavior is generally correct.

For the case of the single file, it has a SpacingBetweenSlices defined, which is valid (optional) for a CTImageStorage and with the new code this is not ignored.

(base) pieper@hive clunie_single % dcmdump D_CLUNIE_CT1_J2KR1.dcm| grep SpacingBetween
(0018,0088) DS [5.000000]                               #   8, 1 SpacingBetweenSlices

In the code pointed to by @issakomi it looks to me like all the Media Storage types above the break could validly have a SpacingBetweenSlices (although I didn't check them all) and probably it should be used if it's there, at least for the single slice case. I believe ImageHelper::SecondaryCaptureImagePlaneModule is misleadingly named, but probably has an effect here that is consistent with the standard, even though it's different from what GDCM used to do (we can decide if that's an improvement or a regression).

For the multiple slices it's a little weirder. It seems the test case the positions are the same for the two slices, so probably ImageSeriesReader treats this as a degenerate case and falls back to 1, while GDCMImageIO just reports what's in the file.

(base) pieper@hive clunie_multiple % dcmdump D_CLUNIE_CT1_J2KR1_01.dcm| grep ImagePosition 
(0020,0032) DS [-158.135803\-179.035797\-75.699997]     #  34, 3 ImagePositionPatient
(base) pieper@hive clunie_multiple % dcmdump D_CLUNIE_CT1_J2KR1_02.dcm| grep ImagePosition
(0020,0032) DS [-158.135803\-179.035797\-75.699997]     #  34, 3 ImagePositionPatient
(base) pieper@hive clunie_multiple % dcmdump D_CLUNIE_CT1_J2KR1_01.dcm| grep SpacingBetween
(0018,0088) DS [5.000000]                               #   8, 1 SpacingBetweenSlices
(base) pieper@hive clunie_multiple % dcmdump D_CLUNIE_CT1_J2KR1_02.dcm| grep SpacingBetween
(0018,0088) DS [5.000000]                               #   8, 1 SpacingBetweenSlices

The ITK readers defaulting to a spacing of 1 when the value really should be undefined is probably a bit of legacy behavior we can't easily change now, even if it's confusing since you don't know if 1 is valid or not. Then again, I'm not sure what the correct answer is here: the files are in the same location but claim to be 5mm apart, so it's not clear which part of the file should take precedence.

So while I think the GDCM change is okay, something about the behavior of the series reader is causing a problem in Slicer on some real CT data that is being discussed further here: https://discourse.slicer.org/t/regression-in-the-dicom-data-base/37913/8.

@seanm
Copy link
Contributor Author

seanm commented Sep 25, 2024

The ITK readers defaulting to a spacing of 1 when the value really should be undefined is probably a bit of legacy behavior we can't easily change now, even if it's confusing since you don't know if 1 is valid or not.

I suppose we could still change this behaviour, using the ITK_LEGACY_REMOVE feature to bring it in slowly...

pieper added a commit to pieper/Slicer that referenced this issue Oct 8, 2024
Fixes Slicer#7937

See original report here about a dataset being scrambled that loaded well
in the 5.6.2 release:

https://discourse.slicer.org/t/regression-in-the-dicom-data-base/37913

This corresponds to the change in behavior described here, where spacing
from ITK that used to be 1 is now, for example 5 or -1:

InsightSoftwareConsortium/ITK#4794

Which is believed to be due to the changes here, which was
added so that for Secondary Capture files the spacing would
be respected if present:

InsightSoftwareConsortium/ITK#4521

However adding this code in GDCM meant that if the SpacingBetweenSlices
tag is present, even in a CT, it is being used by ITK to calculate
spacing, and also ITKToRAS transforms when trying to orthogonalize
the transform.

Since Slicer doesn't rely on orthogonal IJKToRAS transforms, this change
tells ITK to skip that step and instead it relies on the positions
and orientations of the slices to calculate the IJKToRAS transform, which
is compatible with what Slicer expects.

This code was tested on both the CT scan with the negative spacing that
was reported in the original issue, and on other CT cans without that
tag and the geometry matches what was obtained in 5.6.2.

This change was discussed in the Slicer developer meeting 2024-10-08 and
determined to be the best course of action.  Further fixes in GDCM or
ITK were not pursued because it was unclear whta the correct behavior
should be at the library level considering that a negative spacing
between slices is technically invalid for CT scans according to
the DICOM standard.
pieper added a commit to Slicer/Slicer that referenced this issue Oct 8, 2024
Fixes #7937

See original report here about a dataset being scrambled that loaded well
in the 5.6.2 release:

https://discourse.slicer.org/t/regression-in-the-dicom-data-base/37913

This corresponds to the change in behavior described here, where spacing
from ITK that used to be 1 is now, for example 5 or -1:

InsightSoftwareConsortium/ITK#4794

Which is believed to be due to the changes here, which was
added so that for Secondary Capture files the spacing would
be respected if present:

InsightSoftwareConsortium/ITK#4521

However adding this code in GDCM meant that if the SpacingBetweenSlices
tag is present, even in a CT, it is being used by ITK to calculate
spacing, and also ITKToRAS transforms when trying to orthogonalize
the transform.

Since Slicer doesn't rely on orthogonal IJKToRAS transforms, this change
tells ITK to skip that step and instead it relies on the positions
and orientations of the slices to calculate the IJKToRAS transform, which
is compatible with what Slicer expects.

This code was tested on both the CT scan with the negative spacing that
was reported in the original issue, and on other CT cans without that
tag and the geometry matches what was obtained in 5.6.2.

This change was discussed in the Slicer developer meeting 2024-10-08 and
determined to be the best course of action.  Further fixes in GDCM or
ITK were not pursued because it was unclear whta the correct behavior
should be at the library level considering that a negative spacing
between slices is technically invalid for CT scans according to
the DICOM standard.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type:Bug Inconsistencies or issues which will cause an incorrect result under some or all circumstances
Projects
None yet
Development

No branches or pull requests

4 participants