CDetectedQuadResultItem Class
The CDetectedQuadResultItem class stores a captured result whose type is detected quad.
Definition
Namespace: dynamsoft::ddn
Assembly: DynamsoftDocumentNormalizer
class CDetectedQuadResultItem: CCapturedResultItem
Inheritance: CCapturedResultItem -> CDetectedQuadResultItem
Methods
| Method | Description |
|---|---|
GetLocation |
Gets the location of current object. |
GetConfidenceAsDocumentBoundary |
Gets the confidence of current object as a document boundary. |
GetCrossVerificationStatus |
Gets the status of current object as a verified document boundary. |
| Methods Inherited from CCapturedResultItem: | |
GetType |
Gets the type of the captured result item. |
GetReferenceItem |
Gets a pointer to the referenced item in the captured result. |
GetTargetROIDefName |
Gets the name of the target ROI definition. |
GetTaskName |
Gets the name of the task. |
Retain |
Increases the reference count of the CCapturedResultItem object. |
Release |
Decreases the reference count of the CCapturedResultItem object. |
Clone |
Clone the captured result item. |
GetLocation
Gets the location of current object.
const CQuadrilateral GetLocation()
Return Value
The location of current object.
See Also
GetConfidenceAsDocumentBoundary
Gets the confidence of current object as a document boundary.
int GetConfidenceAsDocumentBoundary()
Return Value
The confidence as document boundary of the detected quad result.
GetCrossVerificationStatus
Gets the status of current object as a verified document boundary.
virtual CrossVerificationStatus GetCrossVerificationStatus() const = 0;
Return Value
The CrossVerificationStatus of the detected quad result.
See Also