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
Namespace: com.dynamsoft.ddn
Assembly: DynamsoftCaptureVisionBundle.aar
class DeskewedImageResultItem extends CapturedResultItem
Properties
| Property | Type | Description |
|---|---|---|
ImageData |
ImageData | Represents an ImageData object as the deskewed image. |
SourceDeskewQuad |
Quadrilateral | Represents the quadrilateral from which you get the deskewed image result item. |
CrossVerificationStatus |
EnumCrossVerificationStatus | Represents the cross verification status of the result item. |
OriginalToLocalMatrix |
Matrix | Represents the transformation matrix from the original image coordinate system to the local coordinate system. |
The following properties are inherited from CapturedResultItem.
| Property | Type | Description |
|---|---|---|
Type |
EnumCapturedResultItemType | Get the type of the captured result item, indicating what kind of data it represents. |
TargetROIDefName |
string | Gets the name of the TargetROIDef object which includes a task that generated the result. |
TaskName |
string | The name of the task that generated the result. |
ImageData
Represents an ImageData object for the deskewed image.
ImageData ImageData { get; }
SourceDeskewQuad
Represents the soure Quadrilateral that used to deskew the image.
Quadrilateral Location { get; }
CrossVerificationStatus
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.
EnumCrossVerificationStatus CrossVerificationStatus { get; }
OriginalToLocalMatrix
Represents the transformation matrix from the original image coordinate system to the local coordinate system.
Matrix OriginalToLocalMatrix { get; }