AuxiliaryRegionElement
The AuxiliaryRegionElement class represents an auxiliary region element that contains additional region information detected during processing (e.g., MRZ, portrait zones, signature areas). It inherits from the RegionObjectElement class.
Remarks
Introduced in Dynamsoft Capture Vision version 3.4.1000.
Definition
Namespace: Dynamsoft.Core.intermediate_results
Inheritance: RegionObjectElement -> AuxiliaryRegionElement
public class AuxiliaryRegionElement : RegionObjectElement
Methods
| Method | Description |
|---|---|
AuxiliaryRegionElement |
Constructor. Initializes a new instance of the AuxiliaryRegionElement class. |
GetName |
Gets the name of this auxiliary region. |
GetConfidence |
Gets the confidence level of this auxiliary region detection. |
SetName |
Sets the name of this auxiliary region. |
SetLocation |
Sets the location of this auxiliary region. |
SetConfidence |
Sets the confidence level of this auxiliary region detection. |
| Methods Inherited from RegionObjectElement: | |
GetLocation |
Gets the location of the region object element. |
GetReferencedElement |
Gets a referenced region object element. |
GetElementType |
Gets the type of the region object element. |
GetImageData |
Gets the imageData of the region object element. |
Clone |
Clones the region object element. |
AuxiliaryRegionElement
Constructor. Initializes a new instance of the AuxiliaryRegionElement class.
AuxiliaryRegionElement()
GetName
Gets the name of this auxiliary region.
string GetName()
Return value
Returns a string representing the region name (e.g., “MRZ”, “PortraitZone”, “SignatureArea”).
GetConfidence
Gets the confidence level of this auxiliary region detection.
int GetConfidence()
Return value
Returns the confidence value, typically in the range [0, 100].
SetName
Sets the name of this auxiliary region.
void SetName(string name)
Parameters
name The region name to set (e.g., “MRZ”, “PortraitZone”, “SignatureArea”).
SetLocation
Sets the location of this auxiliary region.
int SetLocation(Quadrilateral location)
Parameters
location A Quadrilateral object defining the region boundaries.
Return value
Returns 0 if successful, otherwise returns an error code.
See Also
SetConfidence
Sets the confidence level of this auxiliary region detection.
void SetConfidence(int confidence)
Parameters
confidence The confidence value to set, typically in the range [0, 100].