# DeskewedImageResultItem Class

The `DeskewedImageResultItem` class stores a captured result item whose type is Deskewed image.

## Definition

*Package:* com.dynamsoft.ddn

```java
public class DeskewedImageResultItem extends CapturedResultItem
```

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

## Methods

| Method | Description |
|--------|-------------|
| [`getImageData`](#getimagedata) | Gets the ImageData of current object. |
| [`getSourceDeskewQuad`](#getsourcedeskewquad)| Gets the quadrilateral used for deskewing the image. |
| [`getCrossVerificationStatus`](#getcrossverificationstatus)| Gets the status of current object as a verified deskewed image. |
| [`getOriginalToLocalMatrix`](#getoriginaltolocalmatrix) | Gets the transformation matrix from the original image coordinate system to the local coordinate system. |

### getImageData

Gets the ImageData of current object.

```java
public ImageData getImageData()
```

**Return Value**

The image data.

**See Also**

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

### getSourceDeskewQuad

Gets the quadrilateral used for deskewing the image.

```java
public Quadrilateral getSourceDeskewQuad()
```

**Return Value**

A `Quadrilateral` object representing the four corners of the quadrilateral used to deskew the image.

**See Also**

* [Quadrilateral](https://www.dynamsoft.com/capture-vision/docs/server/programming/java/api-reference/core/basic-classes/quadrilateral.md)

### getCrossVerificationStatus

Gets the status of current object as a verified deskewed image.

```java
public @EnumCrossVerificationStatus int getCrossVerificationStatus()
```

**Return Value**

Return the status of current object as a verified deskewed image.

**See Also**

[EnumCrossVerificationStatus](https://www.dynamsoft.com/capture-vision/docs/server/programming/java/api-reference/core/enum-cross-verification-status.md)

### getOriginalToLocalMatrix

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

```java
public double[] getOriginalToLocalMatrix()
```

**Return Value**

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