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