dcmjs 0.41.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 +5 -1
- package/build/dcmjs.es.js.map +1 -1
- package/build/dcmjs.js +5 -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,6 +8516,8 @@ 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",
|
|
@@ -11302,13 +11304,15 @@ var Normalizer = /*#__PURE__*/function () {
|
|
|
11302
11304
|
sopClassUIDMap[toUID.DeformableSpatialRegistration] = DSRNormalizer;
|
|
11303
11305
|
sopClassUIDMap[toUID.OphthalmicPhotography8BitImage] = OPImageNormalizer;
|
|
11304
11306
|
sopClassUIDMap[toUID.OphthalmicTomographyImage] = OCTImageNormalizer;
|
|
11307
|
+
sopClassUIDMap[toUID.LabelmapSegmentation] = SEGImageNormalizer; // Labelmap Segmentation uses the same normalizer as Segmentation
|
|
11305
11308
|
return sopClassUIDMap[sopClassUID];
|
|
11306
11309
|
}
|
|
11307
11310
|
}, {
|
|
11308
11311
|
key: "isMultiframeSOPClassUID",
|
|
11309
11312
|
value: function isMultiframeSOPClassUID(sopClassUID) {
|
|
11310
11313
|
var toUID = DicomMetaDictionary.sopClassUIDsByName;
|
|
11311
|
-
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
|
+
];
|
|
11312
11316
|
return multiframeSOPClasses.indexOf(sopClassUID) !== -1;
|
|
11313
11317
|
}
|
|
11314
11318
|
}, {
|