|
| 1 | +--- |
| 2 | +layout: default-layout |
| 3 | +title: DeskewedImageResultItem - Dynamsoft Document Normalizer Android SDK API Reference |
| 4 | +description: The class DeskewedImageResultItem represents a captured result item whose type is a deskewed image. It stores the deskewed image information. |
| 5 | +keywords: deskewed image result item, csharp, kotlin |
| 6 | +needGenerateH3Content: true |
| 7 | +needAutoGenerateSidebar: true |
| 8 | +noTitleIndex: true |
| 9 | +--- |
| 10 | + |
| 11 | +# DeskewedImageResultItem |
| 12 | + |
| 13 | +The `DeskewedImageResultItem` class is an extension of [`CapturedResultItem`]({{ site.dcv_maui_api }}core/basic-structures/captured-result-item.html) 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. |
| 14 | + |
| 15 | +## Definition |
| 16 | + |
| 17 | +*Namespace:* com.dynamsoft.ddn |
| 18 | + |
| 19 | +*Assembly:* DynamsoftCaptureVisionBundle.aar |
| 20 | + |
| 21 | +```csharp |
| 22 | +class DeskewedImageResultItem extends CapturedResultItem |
| 23 | +``` |
| 24 | + |
| 25 | +## Properties |
| 26 | + |
| 27 | +| Property | Type | Description | |
| 28 | +| -------- | ---- | ----------- | |
| 29 | +| [`ImageData`](#imagedata) | *ImageData* | Represents an `ImageData` object as the deskewed image. | |
| 30 | +| [`SourceDeskewQuad`](#location) | *Quadrilateral* | Represents the quadrilateral from which you get the deskewed image result item. | |
| 31 | +| [`CrossVerificationStatus`](#crossverificationstatus) | *EnumCrossVerificationStatus* | Represents the cross verification status of the result item. | |
| 32 | +| [`OriginalToLocalMatrix`](#originaltolocalmatrix) | *Matrix* | Represents the transformation matrix from the original image coordinate system to the local coordinate system. | |
| 33 | + |
| 34 | +The following properties are inherited from [`CapturedResultItem`]({{ site.dcv_maui_api }}core/captured-result-item.html). |
| 35 | + |
| 36 | +| Property | Type | Description | |
| 37 | +| -------- | ---- | ----------- | |
| 38 | +| [`Type`]({{ site.dcv_maui_api }}core/captured-result-item.html#type) | *[EnumCapturedResultItemType]({{ site.dcv_maui_api }}core/enum/captured-result-item-type.html)* | Get the type of the captured result item, indicating what kind of data it represents. | |
| 39 | +| [`TargetROIDefName`]({{ site.dcv_maui_api }}core/captured-result-item.html#targetroidefname) | *string* | Gets the name of the [`TargetROIDef`]({{ site.dcv_parameters_reference }}target-roi-def/) object which includes a task that generated the result. | |
| 40 | +| [`TaskName`]({{ site.dcv_maui_api }}core/captured-result-item.html#taskname) | *string* | The name of the task that generated the result. | |
| 41 | + |
| 42 | +### ImageData |
| 43 | + |
| 44 | +Represents an [`ImageData`]({{ site.dcv_maui_api }}core/basic-structures/image-data.html) object for the deskewed image. |
| 45 | + |
| 46 | +```csharp |
| 47 | +ImageData ImageData { get; } |
| 48 | +``` |
| 49 | + |
| 50 | +### SourceDeskewQuad |
| 51 | + |
| 52 | +Represents the soure [Quadrilateral]({{ site.dcv_maui_api }}core/basic-structures/quadrilateral.html) that used to deskew the image. |
| 53 | + |
| 54 | +```csharp |
| 55 | +Quadrilateral Location { get; } |
| 56 | +``` |
| 57 | + |
| 58 | +### CrossVerificationStatus |
| 59 | + |
| 60 | +Represents 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`. |
| 61 | + |
| 62 | +```csharp |
| 63 | +EnumCrossVerificationStatus CrossVerificationStatus { get; } |
| 64 | +``` |
| 65 | + |
| 66 | +### OriginalToLocalMatrix |
| 67 | + |
| 68 | +Represents the transformation matrix from the original image coordinate system to the local coordinate system. |
| 69 | + |
| 70 | +```csharp |
| 71 | +Matrix OriginalToLocalMatrix { get; } |
| 72 | +``` |
0 commit comments