Accord.Vision.Detection.HaarFeature.HaarFeature C# (CSharp) Метод

HaarFeature() публичный Метод

Constructs a new Haar-like feature.
public HaarFeature ( bool tilted ) : System
tilted bool
Результат 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