Table of Contents

Class CameraCoveredDetectorEventArgs

Namespace
VisioForge.Core.CV
Assembly
VisioForge.Core.CV.dll

Provides data for the VisioForge.Core.CV.CameraCoveredDetector.OnCameraCovered event.

public class CameraCoveredDetectorEventArgs : EventArgs

Inheritance

Inherited Members

Remarks

This event args class contains information about the camera coverage detection event, including the detected edge count which indicates the severity of the coverage. Lower edge counts indicate more complete coverage.

Constructors

CameraCoveredDetectorEventArgs(int)

Initializes a new instance of the VisioForge.Core.CV.CameraCoveredDetectorEventArgs class.

public CameraCoveredDetectorEventArgs(int level)

Parameters

level int

The level.

Properties

Level

Gets or sets the number of detected edges in the frame when coverage was detected.

public int Level { get; set; }

Property Value

int

Remarks

This value is useful for logging and threshold tuning. By monitoring typical edge counts during normal operation versus coverage events, you can optimize the detection threshold for your specific environment.

Time

Gets the timestamp when the camera coverage was detected.

public DateTime Time { get; }

Property Value

DateTime

See Also