NormalizedImagesResult
The NormalizedImagesResult class stores a collection of captured result items whose type are normalized images.
Definition
Namespace: Dynamsoft.DDN
Assembly: Dynamsoft.DocumentNormalizer.dll
public class NormalizedImagesResult : CRegionObjectElement
Methods
Method | Description |
---|---|
GetErrorCode |
Gets the error code of the operation. |
GetErrorString |
Gets the error message of the operation. |
GetItems |
Gets a specific normalized image from the result. |
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, from which you get the normalized image. |
GetOriginalImageTag |
Gets the tag of the original image, from which you get the normalized image. |
GetErrorCode
Gets the error code of the operation.
int GetErrorCode()
Return Value
Returns the error code of the operation. A non-zero value indicates an error occurred.
See Also
GetErrorString
Gets the error message of the operation.
string GetErrorString()
Return Value
Returns the error message of the operation.
GetItems
Gets a specific normalized image from the result.
NormalizedImageResultItem GetItems
Parameters
[in] index
The index of the normalized image to get.
Return Value
Returns a normalized image at the specified index. If the index is out of range, returns nullptr.
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 that was normalized.
string GetOriginalImageHashId()
Return Value
Returns the hash ID of the original image that was normalized.
GetOriginalImageTag
Gets the tag of the original image that was normalized.
ImageTag GetOriginalImageTag()
Return Value
Returns a tag of the original image that was normalized.
See Also