Table of Contents

Class LicensePlateRecognizedEventArgs

Namespace
VisioForge.Core.Types.Events
Assembly
VisioForge.Core.dll

Provides data for events that report license plates recognized in a video frame by the ANPR block.

public class LicensePlateRecognizedEventArgs : EventArgs

Inheritance

Inherited Members

Remarks

Raised for each processed frame that contains at least one plate candidate passing the configured filters. The event is raised on the pipeline's frame-processing thread, so handlers must be thread-safe and marshal to the UI thread when needed.

Constructors

LicensePlateRecognizedEventArgs(LicensePlateResult[], TimeSpan)

Initializes a new instance of the VisioForge.Core.Types.Events.LicensePlateRecognizedEventArgs class.

public LicensePlateRecognizedEventArgs(LicensePlateResult[] plates, TimeSpan timestamp)

Parameters

plates LicensePlateResult[]

The recognized plates.

timestamp TimeSpan

The timestamp of the source frame.

Properties

Plates

Gets the recognized license plates for the current frame.

public LicensePlateResult[] Plates { get; }

Property Value

LicensePlateResult[]

Timestamp

Gets the timestamp of the video frame the plates belong to.

public TimeSpan Timestamp { get; }

Property Value

TimeSpan