Table of Contents

Class PIIRegionsRedactedEventArgs

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

Provides data for events that report PII regions detected (and redacted) in a video frame.

public class PIIRegionsRedactedEventArgs : EventArgs

Inheritance

Inherited Members

Remarks

Raised on the background detection thread for each detection cycle that finds at least one region. Handlers must be thread-safe and marshal to the UI thread when needed. The recognized content of a region (a plate number, a text string) is intentionally never included — the block removes PII, it does not export it.

Constructors

PIIRegionsRedactedEventArgs(PIIRegion[], TimeSpan)

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

public PIIRegionsRedactedEventArgs(PIIRegion[] regions, TimeSpan timestamp)

Parameters

regions PIIRegion[]

The redacted regions.

timestamp TimeSpan

The timestamp of the source frame.

Properties

Regions

Gets the redacted regions for the current detection cycle.

public PIIRegion[] Regions { get; }

Property Value

PIIRegion[]

Timestamp

Gets the timestamp of the video frame the regions were detected on.

public TimeSpan Timestamp { get; }

Property Value

TimeSpan