2
votes

I'm look for a DICOM image reconstruction tag. Is there any tag to recognize a DICOM Image is result of a reconstruction?

First try searching for "MPR" (multiplanare Rekonstruktion) but just for Siemens?

(0008,0008);Image Type;DERIVED\PRIMARY\AXIAL\CT_SOM5 MPR
(0008,103e);Series Description;Abdomen nativ  3.0  MPR  kor
1

1 Answers

1
votes

Image Type (0008, 0008) is the field you are searching for. Unfortunately, you will run into three issues:

  • Not all vendors stick to the defined terms for this attribute, some treat them as free text. So does Siemens - "CT_SOM5 MPR" is not a defined term for this attribute.
  • it depends on the type of object (SOP Class UID) which defined terms apply and from which component of Image Type they can be obtained.
    • DERIVED\SECONDARY\MPR (MPR is value 3 for MR objects)
    • DERIVED\SECONDARY\ANGIO\RESAMPLED (RESAMPLED is value 4 for Enhanced IODs)
  • There are several reconstruction techniques, MPR is just one of them

There is an attribute Volume Based Calculation Technique (0008, 9207) from which this could be safely determined, but so far I have never seen it included in practical datasets. Plus, it is not allowed for all IODs

Long story short: Using Image Type and sticking to the rules and defined terms applying to this attribute would be DICOM conformant and correct, but fail in some practical cases. I do not see any other generic approach. To include more practical cases, you will need to implement vendor-specific heuristics.