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.

DetectedQuadsResult

The DetectedQuadsResult class represents a collection of DetectedQuadResultItems, the basic unit of a detected quad result.

Definition

Namespace: Dynamsoft.DocumentNormalizer.Maui

Assembly: Dynamsoft.DocumentNormalizer.Maui

class DetectedQuadsResult

Properties

Property Type Description
Items *IList* An array of DetectedQuadResultItem, which are the detected quadrilateral items.
RotationTransformMatrix Matrix The rotation transformation matrix of the original image relative to the rotated image.
OriginalImageHashId string The hash id of the original image. You can use this ID to get the original image via IntermediateResultManager class.
ErrorCode int The error code of the detected quads result, if an error occurred.
ErrorMessage String The error message of the detected quads result, if an error occurred.

Items

An array of DetectedQuadResultItem, which represents the basic unit of the captured result, in this case, a detected quadrilateral.

IList<DetectedQuadResultItem> Items { get; }

RotationTransformMatrix

The rotation transformation matrix of the original image relative to the rotated image. Please see Matrix for more info.

Matrix RotationTransformMatrix { get; }

OriginalImageHashId

The hash ID of the original image. You can use this ID to get the original image via IntermediateResultManager class.

string OriginalImageHashId { get; }

ErrorCode

The error code of the detected quads result, if an error occurred.

int ErrorCode { get; }

ErrorMessage

The error message of the detected quads result, if an error occurred.

String ErrorMessage { get; }

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: