* fix: Rename services to lower camel case, hp, measure * fix: Rename DisplaySetService instances to displaySetService * fix: Rename CornerstoneViewportService to lower camel case * fix: Added lower case segmentationService rename * rename other services (#3166) * rename uiDialogService * rename toolGroupService * rename uiNotificationService * rename viewportGridService * rename syncGroupService * rename CornerstoneCacheService * Fix a syntax error in hotkeys * Fix a couple of rename issues that were missed --------- Co-authored-by: Alireza <ar.sedghi@gmail.com>
57 lines
1.6 KiB
JavaScript
57 lines
1.6 KiB
JavaScript
import {
|
|
addTool,
|
|
RectangleROIStartEndThresholdTool,
|
|
} from '@cornerstonejs/tools';
|
|
|
|
import measurementServiceMappingsFactory from './utils/measurementServiceMappings/measurementServiceMappingsFactory';
|
|
import colormaps from './utils/colormaps';
|
|
|
|
const CORNERSTONE_3D_TOOLS_SOURCE_NAME = 'Cornerstone3DTools';
|
|
const CORNERSTONE_3D_TOOLS_SOURCE_VERSION = '0.1';
|
|
/**
|
|
*
|
|
* @param {Object} servicesManager
|
|
* @param {Object} configuration
|
|
* @param {Object|Array} configuration.csToolsConfig
|
|
*/
|
|
export default function init({ servicesManager, extensionManager }) {
|
|
const {
|
|
measurementService,
|
|
displaySetService,
|
|
cornerstoneViewportService,
|
|
} = servicesManager.services;
|
|
|
|
addTool(RectangleROIStartEndThresholdTool);
|
|
|
|
const { RectangleROIStartEndThreshold } = measurementServiceMappingsFactory(
|
|
measurementService,
|
|
displaySetService,
|
|
cornerstoneViewportService
|
|
);
|
|
|
|
const csTools3DVer1MeasurementSource = measurementService.getSource(
|
|
CORNERSTONE_3D_TOOLS_SOURCE_NAME,
|
|
CORNERSTONE_3D_TOOLS_SOURCE_VERSION
|
|
);
|
|
|
|
measurementService.addMapping(
|
|
csTools3DVer1MeasurementSource,
|
|
'RectangleROIStartEndThreshold',
|
|
RectangleROIStartEndThreshold.matchingCriteria,
|
|
RectangleROIStartEndThreshold.toAnnotation,
|
|
RectangleROIStartEndThreshold.toMeasurement
|
|
);
|
|
|
|
initColormaps(extensionManager);
|
|
}
|
|
|
|
function initColormaps(extensionManager) {
|
|
const utilityModule = extensionManager.getModuleEntry(
|
|
'@ohif/extension-cornerstone.utilityModule.common'
|
|
);
|
|
|
|
const { registerColormap } = utilityModule.exports;
|
|
|
|
colormaps.forEach(registerColormap);
|
|
}
|