DSTextureRemovedBinaryImageUnit
The DSTextureRemovedBinaryImageUnit class extends the DSIntermediateResultUnit class and represents a texture-removed binary image unit.
Definition
Assembly: DynamsoftCaptureVisionBundle.xcframework
- Objective-C
- Swift
NS_SWIFT_NAME(TextureRemovedBinaryImageUnit) @interface DSTextureRemovedBinaryImageUnit: DSIntermediateResultUnitclass TextureRemovedBinaryImageUnit : IntermediateResultUnit
Methods
| Method | Description |
|---|---|
setImageData |
Sets the image data for the texture-removed binary image. |
getImageData |
Gets the image data for the texture-removed binary image. |
Inherited Methods
The following methods are inherited from class IntermediateResultUnit.
| Method | Description |
|---|---|
getHashId |
Gets the hash ID of the unit. The hash ID is the unique identifier for the intermediate result unit. |
getOriginalImageHashId |
Gets the hash ID of the original image associated with this unit. |
getOriginalImageTag |
Gets the tag associated with the original image. |
getType |
Gets the type of the intermediate result unit, defined by the enumeration IntermediateResultUnitType. |
getTransformMatrix |
Gets the transformation matrix via DSTransformMatrixType. |
clone |
Creates a copy of the intermediate result unit. |
replace |
Replaces the content of the intermediate result unit. |
setImageData
Sets the image data for the texture-removed binary image.
- Objective-C
- Swift
-(NSInteger)setImageData:(DSImageData *)imageData;func setImageData(_ imageData: DSImageData?) -> Int
Parameters
imageData: A DSImageData object as the image data of the texture removed binary image.
Return Value
Returns the ErrorCode if failed. Otherwise, returns 0.
getImageData
Gets the image data for the texture-removed binary image.
- Objective-C
- Swift
-(nullable DSImageData *)getImageData;func getImageData() -> DSImageData?
Return Value
A DSImageData object that describes the texture removed binary image.