Create a motion history object

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public MotionHistory(
	double mhiDuration,
	double maxTimeDelta,
	double minTimeDelta
)
Public Sub New ( _
	mhiDuration As Double, _
	maxTimeDelta As Double, _
	minTimeDelta As Double _
)
public:
MotionHistory(
	double mhiDuration, 
	double maxTimeDelta, 
	double minTimeDelta
)

Parameters

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.

See Also