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

HaarFeature() public method

Constructs a new Haar-like feature.
public HaarFeature ( bool tilted ) : System
tilted bool
return System
        public HaarFeature(bool tilted, params int[][] rectangles)
        {
            this.Tilted = tilted;
            this.Rectangles = new HaarRectangle[rectangles.Length];
            for (int i = 0; i < rectangles.Length; i++)
                this.Rectangles[i] = new HaarRectangle(rectangles[i]);
        }

Same methods

HaarFeature::HaarFeature ( ) : System