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