larvitar 3.8.6 → 3.8.7
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/imaging/imageContours.d.ts +2 -1
- package/dist/imaging/postProcessing/applyKernel.d.ts +1 -1
- package/dist/imaging/tools/custom/BorderMagnifyTool.d.ts +0 -1
- package/dist/imaging/tools/custom/EllipticalRoiUSTool.d.ts +0 -1
- package/dist/imaging/tools/custom/FreehandRoiUSTool.d.ts +0 -1
- package/dist/imaging/tools/custom/LengthPlotTool.d.ts +0 -1
- package/dist/imaging/tools/custom/LengthUSTool.d.ts +0 -1
- package/dist/imaging/tools/custom/ManualLengthPlotTool.d.ts +0 -1
- package/dist/imaging/tools/custom/OverlayTool.d.ts +0 -1
- package/dist/imaging/tools/custom/RectangleRoiUSTool.d.ts +0 -1
- package/dist/imaging/tools/custom/WwwcRemoveRegionTool.d.ts +0 -1
- package/dist/imaging/tools/custom/contourTool.d.ts +0 -1
- package/dist/imaging/tools/custom/customMouseWheelScrollTool.d.ts +0 -1
- package/dist/imaging/tools/custom/diameterTool.d.ts +0 -1
- package/dist/imaging/tools/custom/editMaskTool.d.ts +0 -1
- package/dist/imaging/tools/custom/gspsTool.d.ts +0 -1
- package/dist/imaging/tools/custom/polylineScissorsTool.d.ts +0 -1
- package/dist/imaging/tools/custom/rectangleRoiOverlayTool.d.ts +0 -1
- package/dist/imaging/tools/custom/rotateTool.d.ts +0 -1
- package/dist/imaging/tools/custom/thresholdsBrushTool.d.ts +0 -1
- package/dist/imaging/tools/custom/watershedSegmentationTool.d.ts +0 -1
- package/dist/larvitar.js +1 -1
- package/dist/logger.d.ts +2 -2
- package/package.json +9 -6
|
@@ -15,4 +15,5 @@ import { Contours } from "./types";
|
|
|
15
15
|
*/
|
|
16
16
|
export declare const parseContours: (contoursData: {
|
|
17
17
|
[key: string]: Uint8Array;
|
|
18
|
-
},
|
|
18
|
+
}, // TODO-ts: check if this is correct @mronzoni
|
|
19
|
+
pointBatchSize: number, segmentationName: string, viewports?: Array<string>) => Contours;
|
|
@@ -13,7 +13,7 @@ export declare const addCustomKernel: (name: string, config: KernelConfig) => vo
|
|
|
13
13
|
* @returns {ConvolutionKernels} - CONVOLUTION_KERNELS object
|
|
14
14
|
*/
|
|
15
15
|
export declare const getKernels: () => {
|
|
16
|
-
[
|
|
16
|
+
[key: string]: KernelConfig;
|
|
17
17
|
};
|
|
18
18
|
/**
|
|
19
19
|
* Apply convolution filter to DICOM image
|
|
@@ -9,7 +9,6 @@ import { Coords, EventData, MeasurementData, MeasurementMouseEvent } from "../ty
|
|
|
9
9
|
* @extends Tools.Base.BaseAnnotationTool
|
|
10
10
|
*/
|
|
11
11
|
export default class EllipticalRoiTool extends BaseAnnotationTool {
|
|
12
|
-
static [x: string]: any;
|
|
13
12
|
constructor(props?: {});
|
|
14
13
|
createNewMeasurement(eventData: EventData): {
|
|
15
14
|
visible: boolean;
|
|
@@ -92,7 +92,6 @@ import { HandlePosition, Rectangle, Stats } from "../types";
|
|
|
92
92
|
* @extends Tools.Base.BaseAnnotationTool
|
|
93
93
|
*/
|
|
94
94
|
export default class FreehandRoiTool extends BaseAnnotationTool {
|
|
95
|
-
static [x: string]: any;
|
|
96
95
|
private isMultiPartTool;
|
|
97
96
|
private _drawing;
|
|
98
97
|
private _dragging;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
declare const BaseAnnotationTool: any;
|
|
2
2
|
import { MeasurementData, MeasurementMouseEvent, Coords, EventData } from "../types";
|
|
3
3
|
export default class LengthTool extends BaseAnnotationTool {
|
|
4
|
-
static [x: string]: any;
|
|
5
4
|
constructor(props?: {});
|
|
6
5
|
createNewMeasurement(eventData: EventData): {
|
|
7
6
|
visible: boolean;
|
|
@@ -17,7 +17,6 @@ interface ToolMouseEvent {
|
|
|
17
17
|
* @extends Tools.Base.BaseTool
|
|
18
18
|
*/
|
|
19
19
|
export default class OverlayTool extends BaseTool {
|
|
20
|
-
static [x: string]: any;
|
|
21
20
|
constructor(configuration?: {});
|
|
22
21
|
enabledCallback(element: HTMLElement): void;
|
|
23
22
|
disabledCallback(element: HTMLElement): void;
|
|
@@ -9,7 +9,6 @@ import { Coords, EventData, MeasurementData, MeasurementMouseEvent } from "../ty
|
|
|
9
9
|
* @extends Tools.Base.BaseAnnotationTool
|
|
10
10
|
*/
|
|
11
11
|
export default class RectangleRoiTool extends BaseAnnotationTool {
|
|
12
|
-
static [x: string]: any;
|
|
13
12
|
constructor(props?: {});
|
|
14
13
|
createNewMeasurement(eventData: EventData): {
|
|
15
14
|
visible: boolean;
|
|
@@ -9,7 +9,6 @@ declare const BaseAnnotationTool: any;
|
|
|
9
9
|
* @extends Tools.Base.BaseTool
|
|
10
10
|
*/
|
|
11
11
|
export default class WwwcRemoveRegionTool extends BaseAnnotationTool {
|
|
12
|
-
static [x: string]: any;
|
|
13
12
|
constructor(props?: {});
|
|
14
13
|
createNewMeasurement(eventData: EventData): {
|
|
15
14
|
computeMeasurements: any;
|
|
@@ -14,7 +14,6 @@ declare const BaseAnnotationTool: any;
|
|
|
14
14
|
* @extends Tools.Base.BaseAnnotationTool
|
|
15
15
|
*/
|
|
16
16
|
export declare class ContoursTool extends BaseAnnotationTool {
|
|
17
|
-
static [x: string]: any;
|
|
18
17
|
constructor(props?: {
|
|
19
18
|
contoursParsedData?: ContourData;
|
|
20
19
|
segmentationName?: string;
|
|
@@ -9,7 +9,6 @@ declare const BaseAnnotationTool: any;
|
|
|
9
9
|
* @extends Tools.Base.BaseAnnotationTool
|
|
10
10
|
*/
|
|
11
11
|
export default class RectangleRoiOverlayTool extends BaseAnnotationTool {
|
|
12
|
-
static [x: string]: any;
|
|
13
12
|
constructor(props?: {});
|
|
14
13
|
createNewMeasurement(eventData: EventData): {
|
|
15
14
|
computeMeasurements: any;
|
|
@@ -9,7 +9,6 @@ declare const BaseTool: any;
|
|
|
9
9
|
* @extends Tools.Base.BaseTool
|
|
10
10
|
*/
|
|
11
11
|
export default class RotateTool extends BaseTool {
|
|
12
|
-
static [x: string]: any;
|
|
13
12
|
constructor(props?: {});
|
|
14
13
|
touchDragCallback(evt: MeasurementMouseEvent): void;
|
|
15
14
|
mouseDragCallback(evt: MeasurementMouseEvent): void;
|
|
@@ -14,7 +14,6 @@ declare const BaseBrushTool: any;
|
|
|
14
14
|
* @extends Tools.Base.BaseBrushTool
|
|
15
15
|
*/
|
|
16
16
|
export default class ThresholdsBrushTool extends BaseBrushTool {
|
|
17
|
-
static [x: string]: any;
|
|
18
17
|
constructor(props?: {});
|
|
19
18
|
/**
|
|
20
19
|
* Event handler for MOUSE_UP during the drawing event loop.
|