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