fix(contour): set renderFill to false for contour (#4186)

This commit is contained in:
Ibrahim 2024-05-29 11:56:03 -04:00 committed by GitHub
parent 395894c6a9
commit 731340d70a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -141,6 +141,8 @@ export default async function init({
});
const labelmapRepresentation = cornerstoneTools.Enums.SegmentationRepresentations.Labelmap;
const contourRepresentation = cornerstoneTools.Enums.SegmentationRepresentations.Contour;
cornerstoneTools.segmentation.config.setGlobalRepresentationConfig(labelmapRepresentation, {
fillAlpha: 0.5,
fillAlphaInactive: 0.2,
@ -148,6 +150,10 @@ export default async function init({
outlineOpacityInactive: 0.65,
});
cornerstoneTools.segmentation.config.setGlobalRepresentationConfig(contourRepresentation, {
renderFill: false,
});
const metadataProvider = OHIF.classes.MetadataProvider;
volumeLoader.registerVolumeLoader(