DetectedQuadResultItem
The DetectedQuadResultItem class is an extension of the CapturedResultItem that represents a detected quadrilateral. This is the most basic unit of a detected quadrilateral, one of the captured result types that the Capture Vision Router can output.
Definition
Namespace: Dynamsoft.DocumentNormalizer.Maui
Assembly: Dynamsoft.DocumentNormalizer.Maui
class DetectedQuadResultItem : CapturedResultItem
Properties
| Property | Type | Description |
|---|---|---|
Location |
Quadrilateral | A Quadrilateral object as the location of current object. |
ConfidenceAsDocumentBoundary |
int | The confidence score of the detected quadrilateral’s boundary, measuring the certainty that the detected quadrilateral represents the boundary of a document. |
The following properties are inherited from CapturedResultItem.
| Property | Type | Description |
|---|---|---|
Type |
EnumCapturedResultItemType | Get the type of the captured result item, indicating what kind of data it represents. |
TargetROIDefName |
string | Gets 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. |
Location
A Quadrilateral object that represents the location of the detected quadrilateral within the image or frame.
Quadrilateral Location { get; }
ConfidenceAsDocumentBoundary
The confidence score of the detected quadrilateral’s boundary, measuring the certainty that the detected quadrilateral represents the boundary of a document.
int ConfidenceAsDocumentBoundary { get; }