@cornerstonejs/adapters 1.45.0 → 1.46.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.
@@ -0,0 +1,36 @@
1
+ declare class UltrasoundDirectional {
2
+ static toolType: string;
3
+ static utilityToolType: string;
4
+ static TID300Representation: any;
5
+ static isValidCornerstoneTrackingIdentifier: (TrackingIdentifier: any) => boolean;
6
+ static getMeasurementData(MeasurementGroup: any, sopInstanceUIDToImageIdMap: any, imageToWorldCoords: any, metadata: any): {
7
+ description: any;
8
+ sopInstanceUid: any;
9
+ annotation: {
10
+ annotationUID: any;
11
+ metadata: {
12
+ toolName: any;
13
+ referencedImageId: any;
14
+ FrameOfReferenceUID: any;
15
+ label: string;
16
+ };
17
+ data: any;
18
+ };
19
+ finding: any;
20
+ findingSites: any[];
21
+ };
22
+ static getTID300RepresentationArguments(tool: any, worldToImageCoords: any): {
23
+ point1: {
24
+ x: any;
25
+ y: any;
26
+ };
27
+ point2: {
28
+ x: any;
29
+ y: any;
30
+ };
31
+ trackingIdentifierTextValue: string;
32
+ finding: any;
33
+ findingSites: any;
34
+ };
35
+ }
36
+ export default UltrasoundDirectional;
@@ -6,6 +6,7 @@ import CircleROI from "./CircleROI";
6
6
  import EllipticalROI from "./EllipticalROI";
7
7
  import RectangleROI from "./RectangleROI";
8
8
  import PlanarFreehandROI from "./PlanarFreehandROI";
9
+ import UltrasoundDirectional from "./UltrasoundDirectional";
9
10
  import * as Segmentation from "./Segmentation";
10
11
  import * as RTSS from "./RTStruct";
11
12
  declare const Cornerstone3DSR: {
@@ -19,6 +20,7 @@ declare const Cornerstone3DSR: {
19
20
  ArrowAnnotate: any;
20
21
  Probe: any;
21
22
  PlanarFreehandROI: typeof PlanarFreehandROI;
23
+ UltrasoundDirectional: typeof UltrasoundDirectional;
22
24
  MeasurementReport: typeof MeasurementReport;
23
25
  CodeScheme: any;
24
26
  CORNERSTONE_3D_TAG: any;
@@ -24,6 +24,7 @@ declare const adaptersSR: {
24
24
  ArrowAnnotate: any;
25
25
  Probe: any;
26
26
  PlanarFreehandROI: typeof import("./Cornerstone3D/PlanarFreehandROI").default;
27
+ UltrasoundDirectional: typeof import("./Cornerstone3D/UltrasoundDirectional").default;
27
28
  MeasurementReport: typeof import("./Cornerstone3D/MeasurementReport").default;
28
29
  CodeScheme: any;
29
30
  CORNERSTONE_3D_TAG: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cornerstonejs/adapters",
3
- "version": "1.45.0",
3
+ "version": "1.46.0",
4
4
  "description": "Adapters for Cornerstone3D to/from formats including DICOM SR and others",
5
5
  "src": "src/index.ts",
6
6
  "main": "./dist/@cornerstonejs/adapters.es.js",
@@ -49,9 +49,9 @@
49
49
  "ndarray": "^1.0.19"
50
50
  },
51
51
  "devDependencies": {
52
- "@cornerstonejs/core": "^1.45.0",
53
- "@cornerstonejs/streaming-image-volume-loader": "^1.45.0",
54
- "@cornerstonejs/tools": "^1.45.0"
52
+ "@cornerstonejs/core": "^1.46.0",
53
+ "@cornerstonejs/streaming-image-volume-loader": "^1.46.0",
54
+ "@cornerstonejs/tools": "^1.46.0"
55
55
  },
56
- "gitHead": "87999af23a3e0f399c2c3df80587b662ab079b93"
56
+ "gitHead": "935b1d61a7e9a5e668b51577d6491f026dcae6db"
57
57
  }