DetectedQuadsResult Class
The DetectedQuadsResult class stores a captured result whose type is detected quads.
Definition
Namespace: Dynamsoft.DDN
Assembly: Dynamsoft.DocumentNormalizer.dll
public class DetectedQuadsResult
Methods
Method | Description |
---|---|
GetErrorCode |
Gets the error code of the detection operation. |
GetErrorString |
Gets the error message of the detection operation. |
GetItems |
Gets the detected quadrilateral item at a specified index. |
GetRotationTransformMatrix |
Gets the 3x3 rotation transformation matrix of the original image relative to the rotated image. |
GetOriginalImageHashId |
Gets the hash ID of the original image. |
GetOriginalImageTag |
Gets the tag of the original image. |
GetErrorCode
Gets the error code of the detection operation.
int GetErrorCode()
Return Value
Returns the error code.
See Also
GetErrorString
Gets the error message of the detection operation.
string GetErrorString()
Return Value
Returns a string that represents the error message.
GetItems
Gets the detected quadrilateral item at a specified index.
DetectedQuadResultItem GetItems()
Parameters
[in] index
The index of the detected quadrilateral to retrieve.
Return Value
Returns a DetectedQuadResultItem
object that represents the detected quadrilateral at the specified index.
See Also
GetRotationTransformMatrix
Gets the 3x3 rotation transformation matrix of the original image relative to the rotated image.
double[] GetRotationTransformMatrix()
Return Value
Returns a double array of length 9 which represents a 3x3 rotation matrix.
GetOriginalImageHashId
Gets the hash ID of the original image.
string GetOriginalImageHashId()
Return Value
Returns a string that represents the hash ID of the original image.
GetOriginalImageTag
Gets the tag of the original image.
ImageTag GetOriginalImageTag()
Return Value
Returns an ImageTag
object that represents the tag of the original image.
See Also