AForge.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 value ) : int
value object Object to compare with.
return int
        public int CompareTo( object value )
        {
            return ( -Intensity.CompareTo( ( (HoughLine) value ).Intensity ) );
        }
    }