@cornerstonejs/adapters 1.41.0 → 1.42.1
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.
|
@@ -11,17 +11,16 @@
|
|
|
11
11
|
* @param csTools - cornerstone tool instance
|
|
12
12
|
* @returns Report object containing the dataset
|
|
13
13
|
*/
|
|
14
|
-
declare function generateRTSSFromSegmentations(segmentations: any, metadataProvider: any, DicomMetadataStore: any
|
|
14
|
+
declare function generateRTSSFromSegmentations(segmentations: any, metadataProvider: any, DicomMetadataStore: any): any;
|
|
15
15
|
/**
|
|
16
16
|
* Convert handles to RTSSReport report object containing the dcmjs dicom dataset.
|
|
17
17
|
*
|
|
18
18
|
* Note: The tool data needs to be formatted in a specific way, and currently
|
|
19
19
|
* it is limited to the RectangleROIStartEndTool in the Cornerstone.
|
|
20
20
|
*
|
|
21
|
-
* @param annotations Array of Cornerstone tool annotation data
|
|
22
|
-
* @param metadataProvider Metadata provider
|
|
23
|
-
* @param options report generation options
|
|
21
|
+
* @param annotations - Array of Cornerstone tool annotation data
|
|
22
|
+
* @param metadataProvider - Metadata provider
|
|
24
23
|
* @returns Report object containing the dataset
|
|
25
24
|
*/
|
|
26
|
-
declare function generateRTSSFromAnnotations(annotations: any, metadataProvider: any, DicomMetadataStore: any
|
|
25
|
+
declare function generateRTSSFromAnnotations(annotations: any, metadataProvider: any, DicomMetadataStore: any): any;
|
|
27
26
|
export { generateRTSSFromSegmentations, generateRTSSFromAnnotations };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { utilities } from "@cornerstonejs/tools";
|
|
2
2
|
import { generateRTSSFromAnnotations, generateRTSSFromSegmentations } from "./RTSS";
|
|
3
|
+
declare const generateContourSetsFromLabelmap: typeof utilities.contours.generateContourSetsFromLabelmap;
|
|
3
4
|
export { generateContourSetsFromLabelmap, generateRTSSFromAnnotations, generateRTSSFromSegmentations };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cornerstonejs/adapters",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.42.1",
|
|
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.
|
|
53
|
-
"@cornerstonejs/streaming-image-volume-loader": "^1.
|
|
54
|
-
"@cornerstonejs/tools": "^1.
|
|
52
|
+
"@cornerstonejs/core": "^1.42.1",
|
|
53
|
+
"@cornerstonejs/streaming-image-volume-loader": "^1.42.1",
|
|
54
|
+
"@cornerstonejs/tools": "^1.42.1"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "14a1bff3ba983b6664529e8e829a655cc4ffda89"
|
|
57
57
|
}
|