MotionHistory Constructor (Double, Double, Double) |
http://www.emgu.com
Create a motion history object
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic 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
)
new :
mhiDuration : float *
maxTimeDelta : float *
minTimeDelta : float -> MotionHistory
Parameters
- mhiDuration
- Type: SystemDouble
In second, the duration of motion history you wants to keep - maxTimeDelta
- Type: SystemDouble
In second. Any change happens between a time interval greater than this will not be considered - minTimeDelta
- Type: SystemDouble
In second. Any change happens between a time interval smaller than this will not be considered.
See Also