Emgu CV Library Documentation
MotionHistory Constructor (bufferCount, diffThresh, mhiDuration, maxTimeDelta, minTimeDelta)
NamespacesEmgu.CVMotionHistoryMotionHistory(Int32, Int32, Double, Double, Double)

www.emgu.com/wiki
Create a motion history object
Declaration Syntax
C#Visual BasicVisual C++
public MotionHistory(
	int bufferCount,
	int diffThresh,
	double mhiDuration,
	double maxTimeDelta,
	double minTimeDelta
)
Public Sub New ( _
	bufferCount As Integer, _
	diffThresh As Integer, _
	mhiDuration As Double, _
	maxTimeDelta As Double, _
	minTimeDelta As Double _
)
public:
MotionHistory(
	int bufferCount, 
	int diffThresh, 
	double mhiDuration, 
	double maxTimeDelta, 
	double minTimeDelta
)
Parameters
bufferCount (Int32)
number of images to store in buffer, adjust it to fit your camera's frame rate
diffThresh (Int32)
0-255, the amount of pixel intensity change to consider it as motion pixel
mhiDuration (Double)
In second, the duration of motion history you wants to keep
maxTimeDelta (Double)
In second. Any change happens between a time interval greater than this will not be considerred
minTimeDelta (Double)
In second. Any change happens between a time interval smaller than this will not be considerred.

Assembly: Emgu.CV (Module: Emgu.CV) Version: 1.5.0.0 (1.5.0.0)