EnhancedImagesUnit
The EnhancedImagesUnit class represents an intermediate result unit whose type is enhanced images.
Definition
Namespace: com.dynamsoft.ddn.intermediate_results
Assembly: DynamsoftCaptureVisionBundle.aar
class EnhancedImagesUnit extends IntermediateResultUnit
Methods
| Methods | Description |
|---|---|
getEnhancedImage |
Gets the enhanced image of type EnhancedImageElement. |
setEnhancedImage |
Sets the enhanced image with a EnhancedImageElement object |
The following methods are inherited from class IntermediateResultUnit.
| Method | Description |
|---|---|
getHashId |
Returns the hash ID of the unit. |
getOriginalImageHashId |
Returns the hash ID of the original image. |
getOriginalImageTag |
Returns the image tag of the original image. |
getType |
Returns the type of the intermediate result unit. |
getTransformMatrix |
Returns the transformation matrix via DSTransformMatrixType. |
clone |
Creates a copy of the intermediate result unit. |
replace |
Replaces the content of the intermediate result unit. |
getEnhancedImage
Gets a enhanced image.
EnhancedImageElement getEnhancedImage();
Return Value
A EnhancedImageElement object that represents the enhanced image.
setEnhancedImage
Sets a EnhancedImageElement as the enhanced image.
void setEnhancedImage(EnhancedImageElement element);
Parameters
[in] element: The enhanced image to be set.