DICOM: What's the point of SOPInstanceUID tag?

后端 未结 6 993
隐瞒了意图╮
隐瞒了意图╮ 2020-12-24 08:05

DICOM already provides a unique enough identifier for the Series (e.g. Series Instance UID), so why also include one on the lower level objects (e.g. SOPInstanceUID)?

<
相关标签:
6条回答
  • 2020-12-24 08:28

    SOP Instance UID : Represent your a unique Identifier for IOD, Its a TYPE 1 tag must present with value.

    For Example :

    Each DICOM Image has unique identifier

    0 讨论(0)
  • 2020-12-24 08:33

    As you probably know, DICOM has a hierarchy of identifiers for each individual SOP (Service Object Pair) Instance (Patient ID / Study Instance UID / Series Instance UID / SOP Instance UID). This hierarchy is built into the Query/Retrieve mechanism in DICOM, and is also used to identify specific SOP Instances.

    In the specific case you're mentioning, I believe there could be the possibility of multiple RT Structure Sets within a Series/Study. The individual SOP Instance must be referenced so that you know which Structure Set the RT Plan is referencing.

    As for products supporting retrieving by SOP Instance UID, unfortunately, relational queries are not widely supported in DICOM Query/Retrieve SCPs, as you've discovered, and some DICOM servers do not support Image level queries. In this specific case, you could query at the series level specifically for the RTSTRUCT modality, and only retrieve the Series that have this modality, thus narrowing down which data you need to download to just the RT Structure Sets.

    0 讨论(0)
  • 2020-12-24 08:33

    SOPInstanceUId is for image level identification.

    Understand it like: A study can have multiple series and a series can have multiple images/DICOM


    So,

    to identify study uniquely we use StudyInstanceUID


    to identify series uniquely we use SeriesInstanceUID and


    to identify an image/DICOM uniquely we use SOPInstanceUId

    0 讨论(0)
  • 2020-12-24 08:34

    Series reference is not specific enough. In the case of structure sets the Reference SOP Instance UID ties the contours in the structure set to the specific slice in the dataset. It's not enough to just reference the series because you have to ensure that the contour is exactly aligning with a slice.

    0 讨论(0)
  • 2020-12-24 08:40

    SOPInstanceUID represent separate uid of the Dicom Image File. Study, series and sopinstace uids are based on data model. StudyUID give you the particular study information. In which different series devided. Series instance uid used for for this. And SOP instance uid represent seperate Dicom image. It's hierarchy structure. I also never used SOPInstanceUID when i developed PACS workstation in Java. As per my experience, Study & Series uids are enough for represent patient's data. But still SOPInstanceUID gives unique identity to dicom image.

    0 讨论(0)
  • 2020-12-24 08:44

    This question was from quite a while ago, but I thought I'd add that, ignoring QR altogether, a SeriesInstanceUID is a globally unique identifier for a single series. SOPInstanceUID is a globally unique identifier for a DICOM file. A series can have multiple DICOM files, so each would share that same SeriesInstanceUID, but each file would have it's own SOPInstanceUID.

    0 讨论(0)
提交回复
热议问题