# EnhancedImageResultItem

The `EnhancedImageResultItem` class is an extension of [`CapturedResultItem`](/capture-vision/docs/mobile/programming/flutter/api-reference/core/captured-result-item.html) 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_flutter

```dart
class EnhancedImageResultItem extends CapturedResultItem
```

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| [`imageData`](#imagedata) | *ImageData* | An `ImageData` object as the enhanced image. |
| [`originalToLocalMatrix`](#originaltolocalmatrix) | *Matrix4* | The transformation matrix from the original image coordinate system to the local coordinate system. |

The following methods are inherited from [`CapturedResultItem`](/capture-vision/docs/mobile/programming/flutter/api-reference/core/captured-result-item.html).

| Property | Type | Description |
| -------- | ---- | ----------- |
| [`targetROIDefName`](/capture-vision/docs/mobile/programming/flutter/api-reference/core/captured-result-item.html#targetroidefname) | *String* | The name of the target region of interest (ROI) where the captured result was found. |
| [`taskName`](/capture-vision/docs/mobile/programming/flutter/api-reference/core/captured-result-item.html#taskname) | *String* | The name of the recognition task that produced the CapturedResultItem. |
| [`type`](/capture-vision/docs/mobile/programming/flutter/api-reference/core/captured-result-item.html#type) | [*EnumCapturedResultItemType*](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/flutter/api-reference/core/enum/captured-result-item-type.md) | The type of the captured result item. |

### imageData

An [`ImageData`](/capture-vision/docs/mobile/programming/flutter/api-reference/core/image-data.html) object for the enhanced image.

```dart
ImageData? imageData;
```

### originalToLocalMatrix

The transformation matrix from the original image coordinate system to the local coordinate system.

```dart
Matrix4 originalToLocalMatrix;
```
