Click or drag to resize
Accord.NET (logo)

IMotionProcessingProcessFrame Method

Process video and motion frames doing further post processing after performed motion detection.

Namespace:  Accord.Vision.Motion
Assembly:  Accord.Vision (in Accord.Vision.dll) Version: 3.8.0
Syntax
void ProcessFrame(
	UnmanagedImage videoFrame,
	UnmanagedImage motionFrame
)
Request Example View Source

Parameters

videoFrame
Type: Accord.ImagingUnmanagedImage
Original video frame.
motionFrame
Type: Accord.ImagingUnmanagedImage
Motion frame provided by motion detection algorithm (see IMotionDetector).
Remarks

The method does father post processing of detected motion. Type of motion post processing is specified by specific implementation of the IMotionProcessing interface - it may motion area highlighting, motion objects counting, etc.

See Also