Interface of motion detector algorithm.

Namespace:  AForge.Vision.Motion
Assembly:  AForge.Vision (in AForge.Vision.dll) Version: 2.2.4.0 (2.2.4.0)

Syntax

C#
public interface IMotionDetector

Remarks

The interface specifies methods, which should be implemented by all motion detection algorithms - algorithms which perform processing of video frames in order to detect motion. Amount of detected motion may be checked using MotionLevel property. Also MotionFrame property may be used in order to see all the detected motion areas. For example, the MotionFrame property is used by motion processing algorithms for further motion post processing, like highlighting motion areas, counting number of detected moving object, etc.

See Also