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: Dynamsoft.DocumentNormalizer.Maui
Assembly: Dynamsoft.DocumentNormalizer.Maui
class NormalizedImageResultItem
Properties
| Property | Type | Description |
|---|---|---|
ImageData |
ImageData | An ImageData object as the normalized image. |
Location |
Quadrilateral | The quadrilateral from which you get the normalized image result item. |
The following properties are inherited from CapturedResultItem.
| Property | Type | Description |
|---|---|---|
Type |
EnumCapturedResultItemType | Get the type of the captured result item, indicating what kind of data it represents. |
TargetROIDefName |
string | The name of the TargetROIDef object which includes a task that generated the result. |
TaskName |
string | The name of the task that generated the result. |
ImageData
An ImageData object for the normalized image.
ImageData ImageData { get; }
Location
The Quadrilateral that represents the location of the normalized image within the original image or frame.
Quadrilateral Location { get; }