Motion processing algorithm, which highlights border of motion areas.
Namespace:
AForge.Vision.MotionAssembly: AForge.Vision (in AForge.Vision.dll) Version: 2.2.4.0 (2.2.4.0)
Syntax
| C# |
|---|
public class MotionBorderHighlighting : IMotionProcessing |
Remarks
The aim of this motion processing algorithm is to highlight borders of motion areas with the specified color.
Sample usage:
// create motion detector MotionDetector detector = new MotionDetector( /* motion detection algorithm */, new MotionBorderHighlighting( ) ); // continuously feed video frames to motion detector while ( ... ) { // process new video frame detector.ProcessFrame( videoFrame ); }