Detector.Motion.MotionHelper.MotionHelper C# (CSharp) Method

MotionHelper() public method

public MotionHelper ( byte motion, int width, int height, int seedx, int seedy ) : System
motion byte
width int
height int
seedx int
seedy int
return System
        public MotionHelper(byte[,] motion, int width, int height, int seedx, int seedy)
        {
            Height = height;
            Width = width;
            Motion = motion;
            MinX = seedx;
            MaxX = seedx;
            MinY = seedy;
            MaxY = seedy;
        }
MotionHelper