MotionHistory Constructor (Double, Double, Double, DateTime) |
http://www.emgu.com
Create a motion history object
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic MotionHistory(
double mhiDuration,
double maxTimeDelta,
double minTimeDelta,
DateTime startTime
)
Public Sub New (
mhiDuration As Double,
maxTimeDelta As Double,
minTimeDelta As Double,
startTime As DateTime
)
public:
MotionHistory(
double mhiDuration,
double maxTimeDelta,
double minTimeDelta,
DateTime startTime
)
new :
mhiDuration : float *
maxTimeDelta : float *
minTimeDelta : float *
startTime : DateTime -> 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 larger 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. - startTime
- Type: SystemDateTime
The start time of the motion history
See Also