Notice: This documentation is archived. For the latest product features and documentation, please visit Dynamsoft Capture Vision Documentation.
CDetectedQuadsUnit Class
The CDetectedQuadsUnit class represents an intermediate result unit whose type is detected quads.
Definition
Namespace: dynamsoft::ddn::intermediate_results
Assembly: DynamsoftDocumentNormalizer
class CDetectedQuadsUnit: CIntermediateResultUnit
Inheritance: CIntermediateResultUnit -> CDetectedQuadsUnit
Methods
Method | Description |
---|---|
GetCount |
Gets the count of DetectedQuad objects in current object. |
GetDetectedQuad |
Gets a DetectedQuad object from current object by specifying a index. |
GetCount
Gets the count of DetectedQuad objects in current object.
int GetCount()
Return Value
The count of DetectedQuad objects in current object.
GetDetectedQuad
Gets a DetectedQuad object from current object by specifying a index.
const CDetectedQuadElement* GetDetectedQuad(int index)
Parameters
[in] index
The index of the DetectedQuad object.
Return Value
Returns the DetectedQuad object got by the specific index.
See Also