AuxiliaryRegionElement
The AuxiliaryRegionElement interface represents an auxiliary region element detected within an image, such as a portrait zone or signature area. It extends RegionObjectElement with a name and confidence level.
interface AuxiliaryRegionElement extends RegionObjectElement {
name: string;
confidence: number;
}
| Property | Description |
|---|---|
| name | The name of the auxiliary region. |
| confidence | The confidence level of the auxiliary region detection. |
name
The name identifying the type of this auxiliary region (e.g., "PortraitZone", "SignatureArea").
name: string;
confidence
The confidence level of this auxiliary region detection, typically in the range [0, 100].
confidence: number;
See Also