TextureRemovedBinaryImageUnit
The TextureRemovedBinaryImageUnit
class represents an intermediate result unit that stores texture-removed binary image data.
Definition
Module: dynamsoft_core
class TextureRemovedBinaryImageUnit(IntermediateResultUnit)
Methods
Method | Description |
---|---|
get_image_data |
Gets the texture-removed binary image. |
set_image_data |
Sets the texture-removed binary image. |
get_image_data
Gets the texture-removed binary image.
def get_image_data(self) -> ImageData:
Return value
Returns an ImageData
object that represents the texture-removed binary image.
See Also
set_image_data
Sets the texture-removed binary image.
def set_image_data(self, img_data: ImageData) -> int:
Parameters
img_data
The image data to set.
Return value
Returns 0 if succeeds, nonzero otherwise.
See Also