Notice: This documentation is archived. For the latest product features and documentation, please visit Dynamsoft Capture Vision Documentation.
CDetectedQuadResultArray Class
An array storing detected quad results.
class dynamsoft::ddn::CDetectedQuadResultArray
Method | Description |
---|---|
GetCount |
Gets the count of detected quad results in the array. |
GetDetectedQuadResult |
Gets a detected quad result by specifying the index in the array. |
GetCount
Gets the count of detected quad results in the array.
const int GetCount()
Return Value
The count of detected quad results in the array.
GetDetectedQuadResult
Gets a detected quad result by specifying the index in the array.
int GetDetectedQuadResult(int index, CDetectedQuadResult** result)
Parameters
[in] index
The index of the detected quad result to get in the array.
[in] result
The detected quad result got from the array.
Return Value
Returns error code (returns 0 if the function operates successfully).
You can call DC_GetErrorString
to get detailed error message.