Files
ohif-viewer/extensions/cornerstone-dicom-seg/src/utils/initSEGToolGroup.ts

8 lines
309 B
TypeScript

function createSEGToolGroupAndAddTools(ToolGroupService, customizationService, toolGroupId) {
const tools = customizationService.getCustomization('cornerstone.overlayViewportTools');
return ToolGroupService.createToolGroupAndAddTools(toolGroupId, tools);
}
export default createSEGToolGroupAndAddTools;