# EnhancedImageResultItem Class

The `EnhancedImageResultItem` class stores a captured result item whose type is Enhanced image.

## Definition

*Module:* ddn

```python
class EnhancedImageResultItem(CapturedResultItem):
```

*Inheritance:* [CapturedResultItem](https://www.dynamsoft.com/capture-vision/docs/server/programming/python/api-reference/core/basic-classes/captured-result-item.md) -> EnhancedImageResultItem

## Methods

| Method | Description |
|--------|-------------|
| [`get_image_data`](#get_image_data) | Gets the ImageData of current object. |
| [`get_original_to_local_matrix`](#get_original_to_local_matrix) | Gets the transformation matrix from the original image coordinate system to the local coordinate system. |

### get_image_data

Gets the ImageData of current object.

```python
def get_image_data(self) -> ImageData: 
```

**Return Value**

The image data.

**See Also**

* [ImageData](https://www.dynamsoft.com/capture-vision/docs/server/programming/python/api-reference/core/basic-classes/image-data.md)

### get_original_to_local_matrix

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

```python
def get_original_to_local_matrix(self) -> List[float]:
```

**Parameters**

A double array of size 9, representing the 3x3 transformation matrix that converts coordinates from the original image to the local image.