dcmjs 0.40.0 → 0.42.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/dcmjs.es.js +6 -1
- package/build/dcmjs.es.js.map +1 -1
- package/build/dcmjs.js +6 -1
- package/build/dcmjs.js.map +1 -1
- package/package.json +1 -1
- package/test/data.test.js +23 -0
package/build/dcmjs.es.js
CHANGED
|
@@ -8516,10 +8516,13 @@ DicomMetaDictionary.sopClassNamesByUID = {
|
|
|
8516
8516
|
"1.2.840.10008.5.1.4.1.1.66.2": "SpatialFiducials",
|
|
8517
8517
|
"1.2.840.10008.5.1.4.1.1.66.3": "DeformableSpatialRegistration",
|
|
8518
8518
|
"1.2.840.10008.5.1.4.1.1.66.4": "Segmentation",
|
|
8519
|
+
"1.2.840.10008.5.1.4.1.1.66.7": "LabelmapSegmentation",
|
|
8520
|
+
// Labelmap Segmentation SOP Class UID
|
|
8519
8521
|
"1.2.840.10008.5.1.4.1.1.67": "RealWorldValueMapping",
|
|
8520
8522
|
"1.2.840.10008.5.1.4.1.1.88.11": "BasicTextSR",
|
|
8521
8523
|
"1.2.840.10008.5.1.4.1.1.88.22": "EnhancedSR",
|
|
8522
8524
|
"1.2.840.10008.5.1.4.1.1.88.33": "ComprehensiveSR",
|
|
8525
|
+
"1.2.840.10008.5.1.4.1.1.88.34": "Comprehensive3DSR",
|
|
8523
8526
|
"1.2.840.10008.5.1.4.1.1.128": "PETImage",
|
|
8524
8527
|
"1.2.840.10008.5.1.4.1.1.130": "EnhancedPETImage",
|
|
8525
8528
|
"1.2.840.10008.5.1.4.1.1.128.1": "LegacyConvertedEnhancedPETImage",
|
|
@@ -11301,13 +11304,15 @@ var Normalizer = /*#__PURE__*/function () {
|
|
|
11301
11304
|
sopClassUIDMap[toUID.DeformableSpatialRegistration] = DSRNormalizer;
|
|
11302
11305
|
sopClassUIDMap[toUID.OphthalmicPhotography8BitImage] = OPImageNormalizer;
|
|
11303
11306
|
sopClassUIDMap[toUID.OphthalmicTomographyImage] = OCTImageNormalizer;
|
|
11307
|
+
sopClassUIDMap[toUID.LabelmapSegmentation] = SEGImageNormalizer; // Labelmap Segmentation uses the same normalizer as Segmentation
|
|
11304
11308
|
return sopClassUIDMap[sopClassUID];
|
|
11305
11309
|
}
|
|
11306
11310
|
}, {
|
|
11307
11311
|
key: "isMultiframeSOPClassUID",
|
|
11308
11312
|
value: function isMultiframeSOPClassUID(sopClassUID) {
|
|
11309
11313
|
var toUID = DicomMetaDictionary.sopClassUIDsByName;
|
|
11310
|
-
var multiframeSOPClasses = [toUID.NMImage, toUID.EnhancedMRImage, toUID.LegacyConvertedEnhancedMRImage, toUID.EnhancedCTImage, toUID.LegacyConvertedEnhancedCTImage, toUID.EnhancedUSVolume, toUID.EnhancedPETImage, toUID.LegacyConvertedEnhancedPETImage, toUID.Segmentation, toUID.ParametricMapStorage, toUID.OphthalmicTomographyImage
|
|
11314
|
+
var multiframeSOPClasses = [toUID.NMImage, toUID.EnhancedMRImage, toUID.LegacyConvertedEnhancedMRImage, toUID.EnhancedCTImage, toUID.LegacyConvertedEnhancedCTImage, toUID.EnhancedUSVolume, toUID.EnhancedPETImage, toUID.LegacyConvertedEnhancedPETImage, toUID.Segmentation, toUID.ParametricMapStorage, toUID.OphthalmicTomographyImage, toUID.LabelmapSegmentation // Labelmap Segmentation SOP Class UID
|
|
11315
|
+
];
|
|
11311
11316
|
return multiframeSOPClasses.indexOf(sopClassUID) !== -1;
|
|
11312
11317
|
}
|
|
11313
11318
|
}, {
|