ohif-viewer/extensions/cornerstone/src/utils/removeViewportSegmentationRepresentations.ts
2024-11-06 07:15:27 -05:00

18 lines
507 B
TypeScript

import { segmentation } from '@cornerstonejs/tools';
function removeViewportSegmentationRepresentations(viewportId) {
const representations = segmentation.state.getSegmentationRepresentations(viewportId);
if (!representations || !representations.length) {
return;
}
representations.forEach(representation => {
segmentation.state.removeSegmentationRepresentation(
representation.segmentationRepresentationUID
);
});
}
export default removeViewportSegmentationRepresentations;