diff --git a/platform/core/src/classes/MetadataProvider.js b/platform/core/src/classes/MetadataProvider.js index 45fa116e7..fc17ac294 100644 --- a/platform/core/src/classes/MetadataProvider.js +++ b/platform/core/src/classes/MetadataProvider.js @@ -245,7 +245,7 @@ class MetadataProvider { break; case WADO_IMAGE_LOADER_TAGS.VOI_LUT_MODULE: - const { WindowCenter, WindowWidth } = instance; + const { WindowCenter, WindowWidth, VOILUTFunction } = instance; if (WindowCenter === undefined || WindowWidth === undefined) { return; } @@ -259,6 +259,7 @@ class MetadataProvider { metadata = { windowCenter: toNumber(windowCenter), windowWidth: toNumber(windowWidth), + voiLUTFunction: VOILUTFunction, }; break;