Table of contents

This documentation is deprecated. It applies only to legacy version 2.x of Capture Vision and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

ProcessedDocumentResult

The ProcessedDocumentResult interface holds information on detected quadrilaterals, deskewed images and the enhanced images from the original images.

Definition

interface ProcessedDocumentResult extends CapturedResultBase{
    readonly detectedQuadResultItems: Array<DetectedQuadResultItem>;
    readonly deskewedImageResultItems: Array<DeskewedImageResultItem>;
    readonly enhancedImageResultItems: Array<EnhancedImageResultItem>;
};

detectedQuadResultItems

An array of DetectedQuadResultItem objects, each representing a quadrilateral after document detection.

deskewedImageResultItems

An array of DeskewedImageResultItem objects, each representing a piece of the original image after deskewing.

enhancedImageResultItems

An array of EnhancedImageResultItem objects, each representing a piece of the original image after enhancement.

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: