EnhancedImageResultItem
Interface EnhancedImageResultItem 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
Assembly: dynamsoft-capture-vision-react-native
interface EnhancedImageResultItem extends CapturedResultItem
Properties
| Property | Type | Description |
|---|---|---|
imageData |
ImageData | An ImageData object as the enhanced image. |
originalToLocalMatrix |
Array<number> | The transformation matrix from the original image coordinate system to the local coordinate system. |
The following methods are inherited from CapturedResultItem.
| Property | Type | Description |
|---|---|---|
targetROIDefName |
String | The name of the target region of interest (ROI) where the captured result was found. |
taskName |
String | The name of the recognition task that produced the CapturedResultItem. |
type |
EnumCapturedResultItemType | The type of the captured result item. |
imageData
An ImageData object for the enhanced image.
imageData: ImageData;
originalToLocalMatrix
The transformation matrix from the original image coordinate system to the local coordinate system.
originalToLocalMatrix: Array<number>;