Accord.Imaging.HoughLine.CompareTo C# (CSharp) Method

CompareTo() public method

Compare the object with another instance of this class.

Object are compared using their intensity value.

public CompareTo ( object obj ) : int
obj object Object to compare with.
return int
        public int CompareTo(object obj)
        {
            return (-Intensity.CompareTo(((HoughLine)obj).Intensity));
        }
    }