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

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,
	DateTime startTime
)
Public Sub New ( _
	bufferCount As Integer, _
	diffThresh As Integer, _
	mhiDuration As Double, _
	maxTimeDelta As Double, _
	minTimeDelta As Double, _
	startTime As DateTime _
)
public:
MotionHistory(
	int bufferCount, 
	int diffThresh, 
	double mhiDuration, 
	double maxTimeDelta, 
	double minTimeDelta, 
	DateTime startTime
)
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 larger than this will not be considerred
minTimeDelta (Double)
In second. Any change happens between a time interval smaller than this will not be considerred.
startTime (DateTime)
The start time of the motion history

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