MotionHistory Constructor (Double, Double, Double, DateTime) |
http://www.emgu.com
Create a motion history object
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
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