The EnhancedImageResultItem interface extends the CapturedResultItem interface and represents a enhanced image.

interface EnhancedImageResultItem {
    imageData: ImageData;
    originalToLocalMatrix: number[];
    targetROIDefName?: string;
    taskName?: string;
    type: number;
}

Hierarchy (View Summary)

Properties

imageData: ImageData

An ImageData object as the enhanced image.

originalToLocalMatrix: number[]

The transformation matrix from the original image coordinate system to the local coordinate system.

targetROIDefName?: string

the name of the TargetROIDef object which includes a task that generated the result.

taskName?: string

The name of the task that generated the result.

type: number

The type of the captured result item.