Accord.Imaging.HoughCircle.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(((HoughCircle)obj).Intensity));
        }
    }