DeskewedImageElement Class
The DeskewedImageElement class stores an intermediate result whose type is Deskewed image.
Definition
Namespace: Dynamsoft.DDN.intermediate_results
class DeskewedImageElement : RegionObjectElement
Inheritance: RegionObjectElement -> DeskewedImageElement
Methods
| Method | Description |
|---|---|
SetImageData |
Sets the image data of the deskewed image element. |
GetSourceDeskewQuad |
Gets the quadrilateral used for deskewing the image. |
SetImageData
Sets the image data of the deskewed image element.
int SetImageData(ImageData imgData)
Parameters
imgData The image data to set.
Return Value
Returns 0 if succeeds, nonzero otherwise.
See Also
GetSourceDeskewQuad
Gets the quadrilateral used for deskewing the image.
Quadrilateral GetSourceDeskewQuad()
Return Value
Returns A Quadrilateral object representing the four corners of the quadrilateral used to deskew the image.
See Also