Click or drag to resize
Accord.NET (logo)

IMotionDetector Interface

Interface of motion detector algorithm.

Namespace:  Accord.Vision.Motion
Assembly:  Accord.Vision (in Accord.Vision.dll) Version: 3.8.0
Syntax
public interface IMotionDetector
Request Example View Source

The IMotionDetector type exposes the following members.

Properties
  NameDescription
Public propertyMotionFrame
Motion frame containing detected areas of motion.
Public propertyMotionLevel
Motion level value, [0, 1].
Top
Methods
  NameDescription
Public methodProcessFrame
Process new video frame.
Public methodReset
Reset motion detector to initial state.
Top
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