ProcessedDocumentResult
The class ProcessedDocumentResult represents a collection of captured result items whose types are detected boundaries, deskew images or enhanced images.
Definition
Namespace: com.dynamsoft.ddn
Assembly: DynamsoftCaptureVisionBundle.aar
class ProcessedDocumentResult : CapturedResultBase
Methods
| Methods | Description |
|---|---|
DeskewedImageResultItems |
Represents the deskew images with an array of DeskewedImageResultItem. |
DetectedQuadResultItems |
Represents the detected boundaries with an array of DetectedImageResultItem. |
EnhancedImageResultItems |
Represents the enhanced images with an array of EnhancedImageResultItem. |
The following properties are inherited from CapturedResultBase:
| Property | Type | Description |
|---|---|---|
OriginalImageHashId |
string | Represents the hash id of the original image. |
RotationTransformMatrix |
Matrix | Represents the rotation transformation matrix of the original image relative to the rotated image. |
ErrorCode |
int | Represents the error code of this result. |
ErrorMessage |
string | Represents the error message of this result. |
DeskewedImageResultItems
Represents an array of DeskewedImageResultItem objects, where each DeskewedImageResultItem represents a single deskewed image.
DeskewedImageResultItem[]? DeskewedImageResultItems { get; }
DetectedQuadResultItems
Represents an array of DetectedQuadResultItem objects, where each DetectedQuadResultItem represents a single detected boundary.
DetectedQuadResultItem[]? DetectedQuadResultItems { get; }
EnhancedImageResultItems
Represents an array of EnhancedImageResultItem objects, where each EnhancedImageResultItem represents a single enhnanced image.
EnhancedImageResultItem[]? EnhancedImageResultItems { get; }