NormalizedImageResultItem
The NormalizedImageResultItem class is an extension of CapturedResultItem that represents a normalized image. This is the most basic unit of the normalized image result, one of the captured result types that the Capture Vision Router can output.
Definition
Namespace: com.dynamsoft.ddn
Assembly: DynamsoftDocumentNormalizer.aar
class NormalizedImageResultItem extends CapturedResultItem
Methods
| Methods | Description |
|---|---|
getImageData |
Gets an ImageData object as the normalized image. |
getLocation |
The quadrilateral from which you get the normalized image result item. |
The following methods are inherited from CapturedResultItem.
| Method | Description |
|---|---|
getType |
Get the type of the captured result item, indicating what kind of data it represents. |
getReferencedItem |
Get a property of type CapturedResultItem that represents a reference to another captured result item. |
getTargetROIDefName |
Gets the name of the TargetROIDef object which includes a task that generated the result. |
getTaskName |
The name of the task that generated the result. |
getImageData
Returns an ImageData object for the normalized image.
ImageData getImageData();
Return Value
The ImageData object as the normalized image.
getLocation
Returns the Quadrilateral that represents the location of the normalized image within the original image or frame.
Quadrilateral getLocation();
Return Value
The quadrilateral from which you get the normalized image result item.