The NormalizedImageResultItem interface extends the CapturedResultItem interface and represents a normalized image result item.

interface NormalizedImageResultItem {
    crossVerificationStatus: number;
    imageData: ImageData;
    location: Quadrilateral;
    targetROIDefName?: string;
    taskName?: string;
    type: number;
}

Hierarchy (View Summary)

Properties

crossVerificationStatus: number

The cross verification status of type EnumCrossVerificationStatus.

If CaptureVisionRouter doesn't add MultiFrameResultCrossFilter via CaptureVisionRouter.addFilter or added MultiFrameResultCrossFilter doesn't enable verification for the corresponding type, the crossVerificationStatus property of the item for that type will always remain EnumCrossVerificationStatus.CVS_NOT_VERIFIED.

imageData: ImageData

The image data for the normalized image result.

location: Quadrilateral

The location where the normalized image was extracted from within the original image, represented as a quadrilateral.

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.