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
Properties
| Property | Type | Description |
|---|---|---|
ImageData |
ImageData | Returns an ImageData object as the enhanced image. |
OriginalToLocalMatrix |
Matrix | Returns the transformation matrix from the original image coordinate system to the local coordinate system. |
The following properties are inherited from CapturedResultItem.
| Property | Type | Description |
|---|---|---|
Type |
EnumCapturedResultItemType | Get the type of the captured result item, indicating what kind of data it represents. |
TargetROIDefName |
string | Gets the name of the TargetROIDef object which includes a task that generated the result. |
TaskName |
string | The name of the task that generated the result. |
ImageData
Returns an ImageData object for the enhanced image.
ImageData ImageData { get; }
OriginalToLocalMatrix
Returns the transformation matrix from the original image coordinate system to the local coordinate system.
Matrix OriginalToLocalMatrix { get; }