Emgu.CV.MotionHistory.MotionHistory C# (CSharp) Method

MotionHistory() public method

Create a motion history object
public MotionHistory ( double mhiDuration, double maxTimeDelta, double minTimeDelta ) : System
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.
return System
        public MotionHistory(double mhiDuration, double maxTimeDelta, double minTimeDelta)
            : this(mhiDuration, maxTimeDelta, minTimeDelta, DateTime.Now)
        {
        }

Same methods

MotionHistory::MotionHistory ( double mhiDuration, double maxTimeDelta, double minTimeDelta, System.DateTime startTime ) : System