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 |
Returns an ImageData object as the normalized image. |
getLocation |
Returns the quadrilateral from which you get the normalized image result item. |
getCrossVerificationStatus |
Returns the cross verification status of the result item. |
The following methods are inherited from CapturedResultItem
.
Method | Description |
---|---|
getType |
Returns the type of the captured result item, indicating what kind of data it represents. |
getReferencedItem |
Returns a property of type CapturedResultItem that represents a reference to another captured result item. |
getTargetROIDefName |
Returns the name of the TargetROIDef object which includes a task that generated the result. |
getTaskName |
Returns 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.
getCrossVerificationStatus
Returns 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 getCrossVerificationStatus();
Return Value
Returns the cross verification status of type EnumCrossVerificationStatus
.