Example #1
0
#pragma warning disable CS1591

        public bool Equals(RotatedRect other)
        {
            return(Center.Equals(other.Center) && Size.Equals(other.Size) && Angle.Equals(other.Angle));
        }
Example #2
0
 /// <inheritdoc />
 public readonly bool Equals(KeyPoint other)
 {
     return(Pt.Equals(other.Pt) && Size.Equals(other.Size) && Angle.Equals(other.Angle) && Response.Equals(other.Response) && Octave == other.Octave && ClassId == other.ClassId);
 }