* [refactor] measurement service mapping files - rename to .ts files * [fix] RectangleROI - measurement service mapping _getReport() function - tool name fix * [feat] added CircleROI tool from updated cornerstone3D * [refactor] fix for typescript strong typing warnings * [feat] cornerstone-dicom-sr extension - added CircleROI tool * [feat] added toolbar button for CircleROI tool * [doc] doc updates for CircleROI tool * [update] library - dcmjs to 0.29.5 * [fix] roundNumber() function when given strings * [fix] refactor after upgrading conerstonejs library 0.49.0 * yarn.lock file change
17 lines
455 B
TypeScript
17 lines
455 B
TypeScript
import DICOMSRDisplayTool from './DICOMSRDisplayTool';
|
|
|
|
const toolNames = {
|
|
DICOMSRDisplay: DICOMSRDisplayTool.toolName,
|
|
SRLength: 'SRLength',
|
|
SRBidirectional: 'SRBidirectional',
|
|
SREllipticalROI: 'SREllipticalROI',
|
|
SRCircleROI: 'SRCircleROI',
|
|
SRArrowAnnotate: 'SRArrowAnnotate',
|
|
SRAngle: 'SRAngle',
|
|
SRCobbAngle: 'SRCobbAngle',
|
|
SRRectangleROI: 'SRRectangleROI',
|
|
SRPlanarFreehandROI: 'SRPlanarFreehandROI',
|
|
};
|
|
|
|
export default toolNames;
|