-
Notifications
You must be signed in to change notification settings - Fork 163
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
Consider adding the Relative Table Position information #1643
Comments
I would appreciate any guidance on how to proceed from here? |
Hi @effigies, would you be able to ping the appropriate contact for this? Thanks! |
@yarikoptic Since you commented on the original issue, do you have a sense of what should be done here? |
well, I only provided a generic idea on how to approach such or any other similar issue. But it seems
So it seems that ideally we
but before that - may be worth checking with DICOM WG-16 on what they know/think about this lack of agreement? (I will drop a quick question) |
What about the standard data element Slice Location (0020,1041) which is defined to be the "Relative position of the image plane expressed in mm" but relative to an unspecified origin (i.e,, is not required to be table position relative to isocenter, but could be). This is used in MR, though not by all vendors. See for example the result of running this query on IDC data:
|
Also, the Enhanced CT IOD in DICOM added a specific Table Position (0018,9327) data element, with the definition "Relative longitudinal position of acquisition location of this frame in mm from an implementation specific reference point. Shall be relative to the same reference point for all frames in this SOP Instance, but may be different from the reference point in other SOP Instances. Positions as the table moves into the gantry viewed from the front are more negative." but this has never been officially retrofitted to MR. There is no reason it cannot be added as Standard Extended SOP Class though, and I have seen it one vendor's MR images (do a similar query for it in IDC). |
@yarikoptic Any news from DICOM WG-16? :) |
they are above . someone needs to wrap their head around the situation here |
@yarikoptic thanks, I did not realize that.
I believe this element is what allows to correctly register images that are acquired during the same imaging session (change of tablePosition, change of FOV, translation along a direction). However, it does not say where the table was when the scans were acquired. Here is some data to back this up: First scan acquired at -20mm FH, slice1:
Second scan acquired with the same parameters acquired at -60mm FH (
Third scan acquired with the same parameters acquired at +20 FH, slice 1:
The SliceLocation follows the location of the slice with respect to an origin (with an opposite polarity coordinate system in the FH direction in this case). However, the table does not necessarily follow that. I believe the table only moves if the center of the FOV is outside of a specified range from the origin (I think ~50mm for Philips by default). I believe that to know where isocenter is, we need both the sliceLocation (given by the qform/sliceLocation) and the table position. In any case, this shows the importance of the tablePosition as it gives different information from the SliceLocation tag. I'm all for having a Standard Extended SOP Class, it would standardize the information. For now, I think the information is available in the private tags. |
Background
The relative table position is essential to convert from the "patient" coordinate system to the "scanner" coordinate system. For our application in MRI, it would allow to know the location of the isocenter in every acquisition, not just in acquisitions where the table was not moved, which would be the origin when converted to RAS+ using the qform affine matrix. This has been a requested feature in an issue opened in Dcm2niix for another application; to perform offline gradwarp correction.
The different vendors have different ways of encoding this information in the DICOMs. So there would need to be a discussion about how to unify it.
I have gathered some relevant information here:
From @neurolabusc (comment)
From @mr-jaemin (comment):
GE Private tag (0043,10b2) MR Table Position Information consists of
Ex) (0043,10b2) LO [956.1\320.1-17.3125\0\75.3604\58.0479]
Proposition
All manufacturers include information in the Inferior/Superior direction but others also allow some Posterior/Anterior and Left/Right information. I therefore suggest to have a tag, possibly "RelativeTablePosition" that would be a 3 value vector containing the relative table displacement in RAS+ coordinates from when it was first set to isocenter.
"TablePosition": [x, y, z]
Let me know what you think :)
The text was updated successfully, but these errors were encountered: