| layout | default-layout |
|---|---|
| title | DetectedQuadResultItem Class - Dynamsoft Document Normalizer Module Python Edition API Reference |
| description | Definition of DetectedQuadResultItem class in Dynamsoft Document Normalizer Module Python Edition. |
| keywords | get_location, get_confidence_as_document_boundary, DetectedQuadResultItem, api reference |
The DetectedQuadResultItem class stores a captured result whose type is detected quad.
Module: ddn
class DetectedQuadResultItem(dynamsoft_core.CapturedResultItem)Inheritance: [CapturedResultItem]({{ site.dcvb_python_api }}core/basic-classes/captured-result-item.html) -> DetectedQuadResultItem
| Method | Description |
|---|---|
get_location |
Gets the location of current object. |
get_confidence_as_document_boundary |
Gets the confidence of current object as a document boundary. |
get_cross_verification_status |
Gets the status of current object as a verified document boundary. |
Gets the location of current object.
def get_location(self) -> Quadrilateral:Return Value
The location of current object.
See Also
[Quadrilateral]({{ site.dcvb_python_api }}core/basic-classes/quadrilateral.html)
Gets the confidence of current object as a document boundary.
def get_confidence_as_document_boundary(self) -> int:Return Value
The confidence as document boundary of the detected quad result.
Gets the status of current object as a verified document boundary.
def get_cross_verification_status(self) -> EnumCrossVerificationStatus:Return Value
The status of current object as a verified document boundary.
See Also
[EnumCrossVerificationStatus]({{ site.dcvb_python_api }}core/enum-cross-verification-status.html)