예제 #1
0
파일: Bgr.cs 프로젝트: zwolenik/emgucv
 /// <summary>
 /// Return true if the two color equals
 /// </summary>
 /// <param name="other">The other color to compare with</param>
 /// <returns>true if the two color equals</returns>
 public bool Equals(Bgr other)
 {
     return(MCvScalar.Equals(other.MCvScalar));
 }
예제 #2
0
파일: Rgba.cs 프로젝트: gxliu/emgucv-code
 /// <summary>
 /// Return true if the two color equals
 /// </summary>
 /// <param name="other">The other color to compare with</param>
 /// <returns>true if the two color equals</returns>
 public bool Equals(Rgba other)
 {
    return MCvScalar.Equals(other.MCvScalar);
 }