Accord.Vision.Detection.HaarRectangle.HaarRectangle C# (CSharp) Method

HaarRectangle() public method

Constructs a new Haar-like feature rectangle.
public HaarRectangle ( int values ) : System
values int Values for this rectangle.
return System
        public HaarRectangle(int[] values)
        {
            this.X = values[0];
            this.Y = values[1];
            this.Width = values[2];
            this.Height = values[3];
            this.Weight = values[4];
        }

Same methods

HaarRectangle::HaarRectangle ( ) : System
HaarRectangle::HaarRectangle ( int x, int y, int width, int height, float weight ) : System