DSColourImageUnit
The DSColourImageUnit interface extends the DSIntermediateResultUnit interface and represents a color image unit.
Definition
Assembly: DynamsoftCaptureVisionBundle.xcframework
- Objective-C
- Swift
@interface DSColourImageUnit: DSIntermediateResultUnitclass ColourImageUnit : DSIntermediateResultUnit
Methods
| Method | Description |
|---|---|
setImageData |
Sets the image data for the colour image. |
getImageData |
Gets the image data for the colour 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 colour image.
- Objective-C
- Swift
-(NSInteger)setImageData:(DSImageData *)imageData;func setImageData(_ imageData: ImageData?) -> Int
Parameters
imageData: A DSImageData object as the image data of the colour image.
Return Value
Returns the ErrorCode if failed. Otherwise, returns 0.
getImageData
Gets the image data for the colour image.
- Objective-C
- Swift
-(nullable DSImageData *)getImageData;func getImageData() -> ImageData?
Return Value
The image data of the colour image.