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
Methods
| Methods | Description |
|---|---|
getDeskewedImageResultItems |
Gets the deskew images with an array of DeskewedImageResultItem. |
getDetectedQuadResultItems |
Gets the detected boundaries with an array of DetectedImageResultItem. |
getEnhancedImageResultItems |
Gets the enhanced images with an array of EnhancedImageResultItem. |
The following methods are inherited from CapturedResultBase:
| Method | Description |
|---|---|
getOriginalImageHashId |
Gets the hash id of the original image. |
getOriginalImageTag |
Gets the ImageTag of the original image. |
getRotationTransformMatrix |
Gets the rotation transformation matrix of the original image relative to the rotated image. |
getErrorCode |
Gets the error code of this result. |
getErrorMessage |
Gets the error message of this result. |
getDeskewedImageResultItems
Returns an array of DeskewedImageResultItem objects, where each DeskewedImageResultItem represents a single deskewed image.
DeskewedImageResultItem[] getDeskewedImageResultItems();
Return Value
The array of the deskewed image result items.
getDetectedQuadResultItems
Returns an array of DetectedQuadResultItem objects, where each DetectedQuadResultItem represents a single detected boundary.
DetectedQuadResultItem[] getDetectedQuadResultItems();
Return Value
The array of the detected quad result items.
getEnhancedImageResultItems
Returns an array of EnhancedImageResultItem objects, where each EnhancedImageResultItem represents a single enhnanced image.
EnhancedImageResultItem[] getEnhancedImageResultItems();
Return Value
The array of the enhanced image result items.