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

HaarFeatureNode() public method

Constructs a new feature tree node.
public HaarFeatureNode ( double threshold, double leftValue, double rightValue, bool tilted ) : System
threshold double
leftValue double
rightValue double
tilted bool
return System
        public HaarFeatureNode(double threshold, double leftValue, double rightValue, bool tilted, params int[][] rectangles)
        {
            this.Feature = new HaarFeature(tilted, rectangles);
            this.Threshold = threshold;
            this.LeftValue = leftValue;
            this.RightValue = rightValue;
        }

Same methods

HaarFeatureNode::HaarFeatureNode ( ) : System
HaarFeatureNode::HaarFeatureNode ( double threshold, double leftValue, double rightValue ) : System