DeskewedImageResultItem
The DeskewedImageResultItem class is an extension of CapturedResultItem 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_flutter
class DeskewedImageResultItem extends CapturedResultItem
Properties
| Property | Type | Description |
|---|---|---|
imageData |
ImageData | An ImageData object as the deskewed image. |
sourceDeskewQuad |
Quadrilateral | The quadrilateral from which you get the deskewed image result item. |
crossVerificationStatus |
EnumCrossVerificationStatus | The cross verification status of the result item. |
originalToLocalMatrix |
Matrix4 | The transformation matrix from the original image coordinate system to the local coordinate system. |
The following methods are inherited from CapturedResultItem.
| Property | Type | Description |
|---|---|---|
targetROIDefName |
String | The name of the target region of interest (ROI) where the captured result was found. |
taskName |
String | The name of the recognition task that produced the CapturedResultItem. |
type |
EnumCapturedResultItemType | The type of the captured result item. |
imageData
An ImageData object for the deskewed image.
ImageData? imageData;
sourceDeskewQuad
The soure Quadrilateral that used to deskew the image.
Quadrilateral sourceDeskewQuad;
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.
EnumCrossVerificationStatus crossVerificationStatus;
originalToLocalMatrix
The transformation matrix from the original image coordinate system to the local coordinate system.
Matrix4 originalToLocalMatrix;