Accord.Math.Geometry.ConvexityDefect.ConvexityDefect C# (CSharp) Method

ConvexityDefect() public method

Initializes a new instance of the ConvexityDefect class.
public ConvexityDefect ( int point, int start, int end, double depth ) : System
point int The most distant point from the hull.
start int The starting index of the defect in the contour.
end int The ending index of the defect in the contour.
depth double The depth of the defect (highest distance from the hull to /// any of the contour points).
return System
        public ConvexityDefect(int point, int start, int end, double depth)
        {
            this.Point = point;
            this.Start = start;
            this.End = end;
            this.Depth = depth;
        }
ConvexityDefect