Table of Contents

Class LicensePlateResult

Namespace
VisioForge.Core.Types.VideoProcessing
Assembly
VisioForge.Core.dll

A single recognized license plate: the normalized plate string, its confidence, and the detection geometry in source-frame pixel coordinates.

public class LicensePlateResult

Inheritance

Inherited Members

Properties

BoundingBox

Gets or sets the axis-aligned bounding box enclosing the plate, in source-frame pixels.

public Rect BoundingBox { get; set; }

Property Value

Rect

Confidence

Gets or sets the recognition confidence in the 0..1 range.

public float Confidence { get; set; }

Property Value

float

Polygon

Gets or sets the detection quadrilateral vertices, in source-frame pixels.

public OcrPoint[] Polygon { get; set; }

Property Value

OcrPoint[]

Text

Gets or sets the recognized plate text, normalized (uppercased, all non-alphanumeric characters removed).

public string Text { get; set; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.