larvitar 3.8.3 → 3.8.5
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.
|
@@ -159,7 +159,7 @@ export declare const updateImage: (series: Series, elementId: string | HTMLEleme
|
|
|
159
159
|
* @param {Array} elementIds - The array of hmtl div ids
|
|
160
160
|
* @param {Array} keys - The array of viewport sections to resets (default is all)
|
|
161
161
|
*/
|
|
162
|
-
export declare const resetViewports: (elementIds: string[], keys?: Array<"contrast" | "scaleAndTranslation" | "rotation" | "flip" | "zoom">) => void;
|
|
162
|
+
export declare const resetViewports: (elementIds: string[], keys?: Array<"contrast" | "scaleAndTranslation" | "rotation" | "flip" | "zoom" | "scaleAndTranslationOriginalSize">) => void;
|
|
163
163
|
/**
|
|
164
164
|
* Update viewport data in store
|
|
165
165
|
* @instance
|
|
@@ -115,6 +115,14 @@ export declare const getReslicedMetadata: (reslicedSeriesId: string, fromOrienta
|
|
|
115
115
|
};
|
|
116
116
|
currentImageIdIndex: number;
|
|
117
117
|
};
|
|
118
|
+
export declare const getVOIFromMetadata: (metadata: MetaData, renderOptionsVoi?: any) => {
|
|
119
|
+
windowCenter: any;
|
|
120
|
+
windowWidth: any;
|
|
121
|
+
};
|
|
122
|
+
export declare const getFrameSequenceMammoVOI: (metadata: MetaData) => {
|
|
123
|
+
windowCenter: number | number[] | undefined;
|
|
124
|
+
windowWidth: number | number[] | undefined;
|
|
125
|
+
} | null;
|
|
118
126
|
/**
|
|
119
127
|
* Compute cmpr metadata from pyCmpr data (generated using Scyther {@link https://github.com/dvisionlab/Scyther})
|
|
120
128
|
* @instance
|