ColourImageUnit
The ColourImageUnit class represents a unit that contains color image. It is derived from the IntermediateResultUnit class.
Definition
Namespace: Dynamsoft.Core.intermediate_results
class ColourImageUnit : IntermediateResultUnit
Methods
| Method | Description |
|---|---|
GetImageData |
Gets the image data of the color image unit. |
SetImageData |
Sets the image data of the color image unit. |
Inherited Methods
Checkout inherited methods from IntermediateResultUnit for more details.
GetImageData
Gets the image data of the color image unit.
ImageData GetImageData()
Return value
Returns the ImageData object that contains the image data of the color image unit.
See Also
SetImageData
Sets the image data of the color image unit.
int SetImageData(ImageData imgData)
Parameters
[in] imgData The image data to set.
Return value
Returns 0 if succeeds, nonzero otherwise.
See Also