EnhancedImageResultItem
The EnhancedImageResultItem class is an extension of CapturedResultItem that represents a enhanced image. This is the most basic unit of the enhanced image result, one of the captured result types that the Capture Vision Router can output.
Definition
Namespace: com.dynamsoft.ddn
Assembly: DynamsoftCaptureVisionBundle.aar
class EnhancedImageResultItem extends CapturedResultItem
Methods
| Methods | Description |
|---|---|
getImageData |
Returns an ImageData object as the enhanced image. |
getOriginalToLocalMatrix |
Returns the transformation matrix from the original image coordinate system to the local coordinate system. |
The following methods are inherited from CapturedResultItem.
| Method | Description |
|---|---|
getType |
Returns the type of the captured result item, indicating what kind of data it represents. |
getReferencedItem |
Returns a property of type CapturedResultItem that represents a reference to another captured result item. |
getTargetROIDefName |
Returns the name of the TargetROIDef object which includes a task that generated the result. |
getTaskName |
Returns the name of the task that generated the result. |
getImageData
Returns an ImageData object for the enhanced image.
ImageData getImageData();
Return Value
The ImageData object as the enhanced image.
getOriginalToLocalMatrix
Returns the transformation matrix from the original image coordinate system to the local coordinate system.
Matrix getOriginalToLocalMatrix();
Return Value
The transformation matrix of type android.graphics.Matrix.