0

我有一个在另一个 DICOM 查看器工具上完美运行的 Dicom 文件。但我似乎无法用我的 GDCM 查看器打开它。

这是我的 DCM 文件的链接 https://drive.google.com/open?id=0BwsYpl75gMyEbi1BNW52QmVtLWs

有人可以帮我解释为什么我不能用我的新查看器打开那个 DICOM 文件吗?

4

1 回答 1

1

是的,它是 DICOM 综合 SR(结构化报告)文档,没有 DICOM 图像。正如“whiskeyspider”所写,您无法使用 DICOM 查看器显示它的一个原因可能是不支持 SR 文档(或这个特定的 SOP 类)。另一个原因可能是 SR 文档无效(不符合 DICOM 标准的要求)。一个问题是 Content Item 1.3.1 中的 Date (0040,A121) 值为空:

D: $dcmtk: dsrdump v3.6.1 DEV $
D: 
[...]
W: Date (0040,a121) empty in content item (type 1)
W: Reading invalid/incomplete content item DATE "1.3.1"
E: Reading content item DATE "1.3.1" (Invalid Value)
D: ------------------------------- DICOM DATA SET -------------------------------
D: (fffe,e000) na (Item with explicit length #=4)          #  98, 1 Item
D:   (0040,a010) CS [CONTAINS]                               #   8, 1 RelationshipType
D:   (0040,a040) CS [DATE]                                   #   4, 1 ValueType
D:   (0040,a043) SQ (Sequence with explicit length #=1)      #  54, 1 ConceptNameCodeSequence
D:     (fffe,e000) na (Item with explicit length #=3)          #  46, 1 Item
D:       (0008,0100) SH [11779-6]                                #   8, 1 CodeValue
D:       (0008,0102) SH [LN]                                     #   2, 1 CodingSchemeDesignator
D:       (0008,0104) LO [EDD from LMP]                           #  12, 1 CodeMeaning
D:     (fffe,e00d) na (ItemDelimitationItem for re-encoding)   #   0, 0 ItemDelimitationItem
D:   (fffe,e0dd) na (SequenceDelimitationItem for re-encod.) #   0, 0 SequenceDelimitationItem
D:   (0040,a121) DA (no value available)                     #   0, 0 Date
D: (fffe,e00d) na (ItemDelimitationItem for re-encoding)   #   0, 0 ItemDelimitationItem
D: ------------------------------------------------------------------------------
E: Reading content item CONTAINER "1.3" (Invalid Value)

如果您对 SR 文档的内容感兴趣,不妨试试 DCMTK SR 工具:http: //support.dcmtk.org/docs-snapshot/mod_dcmsr.html#Tools

于 2016-11-16T11:25:12.303 回答