@cornerstonejs/tools 2.12.2 → 2.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -191,7 +191,8 @@ class WindowLevelRegionTool extends AnnotationTool {
191
191
  }
192
192
  const windowWidth = Math.max(Math.abs(minMaxMean.max - minMaxMean.min), this.configuration.minWindowWidth);
193
193
  const windowCenter = minMaxMean.mean;
194
- const voiRange = utilities.windowLevel.toLowHighRange(windowWidth, windowCenter);
194
+ const voiLutFunction = viewport.getProperties().VOILUTFunction;
195
+ const voiRange = utilities.windowLevel.toLowHighRange(windowWidth, windowCenter, voiLutFunction);
195
196
  viewport.setProperties({ voiRange });
196
197
  viewport.render();
197
198
  };
@@ -129,7 +129,8 @@ class WindowLevelTool extends BaseTool {
129
129
  windowWidth += wwDelta;
130
130
  windowCenter += wcDelta;
131
131
  windowWidth = Math.max(windowWidth, 1);
132
- return utilities.windowLevel.toLowHighRange(windowWidth, windowCenter);
132
+ const voiLutFunction = viewport.getProperties().VOILUTFunction;
133
+ return utilities.windowLevel.toLowHighRange(windowWidth, windowCenter, voiLutFunction);
133
134
  }
134
135
  _getMultiplierFromDynamicRange(viewport, volumeId) {
135
136
  let imageDynamicRange;
@@ -156,7 +156,7 @@ class CircleROIStartEndThresholdTool extends CircleROITool {
156
156
  };
157
157
  for (let i = 0; i < annotations.length; i++) {
158
158
  const annotation = annotations[i];
159
- const { annotationUID, data } = annotation;
159
+ const { annotationUID, data, metadata } = annotation;
160
160
  const { startCoordinate, endCoordinate } = data;
161
161
  const { points, activeHandleIndex } = data.handles;
162
162
  styleSpecifier.annotationUID = annotationUID;
@@ -260,7 +260,7 @@ class CircleROIStartEndThresholdTool extends CircleROITool {
260
260
  };
261
261
  continue;
262
262
  }
263
- const textLines = this.configuration.getTextLines(data);
263
+ const textLines = this.configuration.getTextLines(data, { metadata });
264
264
  if (!textLines || textLines.length === 0) {
265
265
  continue;
266
266
  }
@@ -461,7 +461,7 @@ class CircleROIStartEndThresholdTool extends CircleROITool {
461
461
  return pos[indexOfDirection];
462
462
  }
463
463
  }
464
- function defaultGetTextLines(data) {
464
+ function defaultGetTextLines(data, _context = {}) {
465
465
  const cachedVolumeStats = data.cachedStats.statistics;
466
466
  const { area, mean, max, stdDev, areaUnit, modalityUnit } = cachedVolumeStats;
467
467
  if (mean === undefined) {
@@ -158,7 +158,7 @@ class RectangleROIStartEndThresholdTool extends RectangleROITool {
158
158
  };
159
159
  for (let i = 0; i < annotations.length; i++) {
160
160
  const annotation = annotations[i];
161
- const { annotationUID, data } = annotation;
161
+ const { annotationUID, data, metadata } = annotation;
162
162
  const { startCoordinate, endCoordinate } = data;
163
163
  const { points, activeHandleIndex } = data.handles;
164
164
  const canvasCoordinates = points.map((p) => viewport.worldToCanvas(p));
@@ -245,7 +245,7 @@ class RectangleROIStartEndThresholdTool extends RectangleROITool {
245
245
  };
246
246
  continue;
247
247
  }
248
- const textLines = this.configuration.getTextLines(data);
248
+ const textLines = this.configuration.getTextLines(data, { metadata });
249
249
  if (!textLines || textLines.length === 0) {
250
250
  continue;
251
251
  }
@@ -420,7 +420,7 @@ class RectangleROIStartEndThresholdTool extends RectangleROITool {
420
420
  return pos[indexOfDirection];
421
421
  }
422
422
  }
423
- function defaultGetTextLines(data) {
423
+ function defaultGetTextLines(data, _context = {}) {
424
424
  const cachedVolumeStats = data.cachedStats.statistics;
425
425
  const { area, mean, max, stdDev, areaUnit, modalityUnit } = cachedVolumeStats;
426
426
  if (mean === undefined) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cornerstonejs/tools",
3
- "version": "2.12.2",
3
+ "version": "2.13.0",
4
4
  "description": "Cornerstone3D Tools",
5
5
  "types": "./dist/esm/index.d.ts",
6
6
  "module": "./dist/esm/index.js",
@@ -104,7 +104,7 @@
104
104
  "canvas": "^2.11.2"
105
105
  },
106
106
  "peerDependencies": {
107
- "@cornerstonejs/core": "^2.12.2",
107
+ "@cornerstonejs/core": "^2.13.0",
108
108
  "@kitware/vtk.js": "32.1.1",
109
109
  "@types/d3-array": "^3.0.4",
110
110
  "@types/d3-interpolate": "^3.0.1",
@@ -123,5 +123,5 @@
123
123
  "type": "individual",
124
124
  "url": "https://ohif.org/donate"
125
125
  },
126
- "gitHead": "2f69dedfcdf36206d48c1584246bd89993ad8e28"
126
+ "gitHead": "dcac6b44a3c251f0e11da0fa3f43397626fae920"
127
127
  }