# DeskewedImageResultItem

Interface `DeskewedImageResultItem` is an extension of [`CapturedResultItem`](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/react-native/api-reference/core/captured-result-item.md) that represents a deskewed image. This is the most basic unit of the deskewed image result, one of the captured result types that the Capture Vision Router can output. 

## Definition

*Assembly:* dynamsoft-capture-vision-react-native

```js
interface DeskewedImageResultItem extends CapturedResultItem
```

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| [`imageData`](#imagedata) | *ImageData* | An `ImageData` object as the deskewed image. |
| [`sourceDeskewQuad`](#location) | *Quadrilateral* | The quadrilateral from which you get the deskewed image result item. |
| [`crossVerificationStatus`](#crossverificationstatus) | *EnumCrossVerificationStatus* | The cross verification status of the result item. |
| [`originalToLocalMatrix`](#originaltolocalmatrix) | *Array\<number\>* | The transformation matrix from the original image coordinate system to the local coordinate system. |

The following methods are inherited from [`CapturedResultItem`](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/react-native/api-reference/core/captured-result-item.md).

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

### imageData

An [`ImageData`](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/react-native/api-reference/core/image-data.md) object for the deskewed image.

```js
imageData: ImageData;
```

### sourceDeskewQuad

The soure [Quadrilateral](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/react-native/api-reference/core/quadrilateral.md) that used to deskew the image.

```js
sourceDeskewQuad: Quadrilateral;
```

### crossVerificationStatus

The cross verification status of the result item. The cross verification status determines whether the result item is approved by the multi-frame cross verification mechanism. If approved, the cross verification status is `CVS_PASSED`. Otherwise, it is `CVS_FAILED`.

```js
crossVerificationStatus: EnumCrossVerificationStatus | number;
```

### originalToLocalMatrix

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

```js
originalToLocalMatrix: Array<number>;
```
