ProcessedDocumentResult
The class ProcessedDocumentResult represents a collection of captured result items whose types are detected boundaries, deskew images or enhanced images.
Definition
Assembly: dynamsoft_capture_vision_flutter
class ProcessedDocumentResult extends CapturedResultBase
Properties
| Property | Types | Description |
|---|---|---|
DeskewedImageResultItems |
*List |
An array of DeskewedImageResultItem objects, where each DeskewedImageResultItem represents a single deskewed image. |
DetectedQuadResultItems |
*List |
An array of DetectedQuadResultItem objects, where each DetectedQuadResultItem represents a single detected boundary. |
EnhancedImageResultItems |
*List |
A array of EnhancedImageResultItem objects, where each EnhancedImageResultItem represents a single enhnanced image. |
The following properties are inherited from CapturedResultBase:
| Property | Types | Description |
|---|---|---|
originalImageHashId |
String | The hash id of the original image. |
rotationTransformMatrix |
Matrix4 | The rotation transformation matrix of the original image relative to the rotated image. |
errorCode |
int | The error code of this result. |
errorMessage |
String | The error message of this result. |
deskewedImageResultItems
An array of DeskewedImageResultItem objects, where each DeskewedImageResultItem represents a single deskewed image.
List<DeskewedImageResultItem>? deskewedImageResultItems;
detectedQuadResultItems
An array of DetectedQuadResultItem objects, where each DetectedQuadResultItem represents a single detected boundary.
List<DetectedQuadResultItem>? detectedQuadResultItems;
enhancedImageResultItems
A array of EnhancedImageResultItem objects, where each EnhancedImageResultItem represents a single enhnanced image.
List<EnhancedImageResultItem>? enhancedImageResultItems;