Skip to content

Commit 7c6bcd9

Browse files
author
Alexis Girault
committed
Use UIDs to identify separate dicom entities
1 parent 564bd31 commit 7c6bcd9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

examples/Dicom/src/parseDicomFiles.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class DICOMPatient extends DICOMEntity {
6666

6767
class DICOMStudy extends DICOMEntity {
6868
static get primaryTag() {
69-
return 'StudyID'
69+
return 'StudyInstanceUID'
7070
}
7171

7272
static get tags() {
@@ -101,7 +101,7 @@ class DICOMStudy extends DICOMEntity {
101101

102102
class DICOMSeries extends DICOMEntity {
103103
static get primaryTag() {
104-
return 'SeriesNumber'
104+
return 'SeriesInstanceUID'
105105
}
106106

107107
static get tags() {
@@ -114,6 +114,7 @@ class DICOMSeries extends DICOMEntity {
114114
'SeriesDescription',
115115
'ProtocolName',
116116
'FrameOfReferenceUID',
117+
'TransferSyntaxUID',
117118
]
118119
}
119120

0 commit comments

Comments
 (0)