@cornerstonejs/tools 1.62.0 → 1.63.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.
- package/dist/cjs/index.d.ts +2 -2
- package/dist/cjs/index.js +2 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/tools/index.d.ts +2 -1
- package/dist/cjs/tools/index.js +4 -1
- package/dist/cjs/tools/index.js.map +1 -1
- package/dist/cjs/tools/segmentation/CircleROIStartEndThresholdTool.d.ts +63 -0
- package/dist/cjs/tools/segmentation/CircleROIStartEndThresholdTool.js +347 -0
- package/dist/cjs/tools/segmentation/CircleROIStartEndThresholdTool.js.map +1 -0
- package/dist/cjs/tools/segmentation/RectangleROIStartEndThresholdTool.d.ts +3 -0
- package/dist/cjs/tools/segmentation/RectangleROIStartEndThresholdTool.js +73 -0
- package/dist/cjs/tools/segmentation/RectangleROIStartEndThresholdTool.js.map +1 -1
- package/dist/cjs/types/ToolSpecificAnnotationTypes.d.ts +34 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/tools/index.js +2 -1
- package/dist/esm/tools/index.js.map +1 -1
- package/dist/esm/tools/segmentation/CircleROIStartEndThresholdTool.js +342 -0
- package/dist/esm/tools/segmentation/CircleROIStartEndThresholdTool.js.map +1 -0
- package/dist/esm/tools/segmentation/RectangleROIStartEndThresholdTool.js +75 -2
- package/dist/esm/tools/segmentation/RectangleROIStartEndThresholdTool.js.map +1 -1
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/tools/index.d.ts +2 -1
- package/dist/types/tools/index.d.ts.map +1 -1
- package/dist/types/tools/segmentation/CircleROIStartEndThresholdTool.d.ts +64 -0
- package/dist/types/tools/segmentation/CircleROIStartEndThresholdTool.d.ts.map +1 -0
- package/dist/types/tools/segmentation/RectangleROIStartEndThresholdTool.d.ts +3 -0
- package/dist/types/tools/segmentation/RectangleROIStartEndThresholdTool.d.ts.map +1 -1
- package/dist/types/types/ToolSpecificAnnotationTypes.d.ts +34 -1
- package/dist/types/types/ToolSpecificAnnotationTypes.d.ts.map +1 -1
- package/dist/umd/index.js +1 -1
- package/dist/umd/index.js.map +1 -1
- package/package.json +3 -3
- package/src/index.ts +2 -0
- package/src/tools/index.ts +2 -0
- package/src/tools/segmentation/CircleROIStartEndThresholdTool.ts +677 -0
- package/src/tools/segmentation/RectangleROIStartEndThresholdTool.ts +134 -2
- package/src/types/ToolSpecificAnnotationTypes.ts +43 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cornerstonejs/tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.63.0",
|
|
4
4
|
"description": "Cornerstone3D Tools",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"webpack:watch": "webpack --mode development --progress --watch --config ./.webpack/webpack.dev.js"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@cornerstonejs/core": "^1.
|
|
32
|
+
"@cornerstonejs/core": "^1.63.0",
|
|
33
33
|
"@icr/polyseg-wasm": "0.4.0",
|
|
34
34
|
"@types/offscreencanvas": "2019.7.3",
|
|
35
35
|
"comlink": "^4.4.1",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"type": "individual",
|
|
60
60
|
"url": "https://ohif.org/donate"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "952379ee23e86f276b66bc7f58c4b37431a35a53"
|
|
63
63
|
}
|
package/src/index.ts
CHANGED
|
@@ -55,6 +55,7 @@ import {
|
|
|
55
55
|
SphereScissorsTool,
|
|
56
56
|
RectangleROIThresholdTool,
|
|
57
57
|
RectangleROIStartEndThresholdTool,
|
|
58
|
+
CircleROIStartEndThresholdTool,
|
|
58
59
|
SegmentationDisplayTool,
|
|
59
60
|
BrushTool,
|
|
60
61
|
AngleTool,
|
|
@@ -136,6 +137,7 @@ export {
|
|
|
136
137
|
SphereScissorsTool,
|
|
137
138
|
RectangleROIThresholdTool,
|
|
138
139
|
RectangleROIStartEndThresholdTool,
|
|
140
|
+
CircleROIStartEndThresholdTool,
|
|
139
141
|
BrushTool,
|
|
140
142
|
OrientationMarkerTool,
|
|
141
143
|
SegmentSelectTool,
|
package/src/tools/index.ts
CHANGED
|
@@ -48,6 +48,7 @@ import CircleScissorsTool from './segmentation/CircleScissorsTool';
|
|
|
48
48
|
import SphereScissorsTool from './segmentation/SphereScissorsTool';
|
|
49
49
|
import RectangleROIThresholdTool from './segmentation/RectangleROIThresholdTool';
|
|
50
50
|
import RectangleROIStartEndThresholdTool from './segmentation/RectangleROIStartEndThresholdTool';
|
|
51
|
+
import CircleROIStartEndThresholdTool from './segmentation/CircleROIStartEndThresholdTool';
|
|
51
52
|
import BrushTool from './segmentation/BrushTool';
|
|
52
53
|
import PaintFillTool from './segmentation/PaintFillTool';
|
|
53
54
|
import OrientationMarkerTool from './OrientationMarkerTool';
|
|
@@ -100,6 +101,7 @@ export {
|
|
|
100
101
|
SphereScissorsTool,
|
|
101
102
|
RectangleROIThresholdTool,
|
|
102
103
|
RectangleROIStartEndThresholdTool,
|
|
104
|
+
CircleROIStartEndThresholdTool,
|
|
103
105
|
SplineContourSegmentationTool,
|
|
104
106
|
BrushTool,
|
|
105
107
|
MagnifyTool,
|