| Rect2dInequality Operator  | 
        
         
            Compares two Rect2d objects. The result specifies whether the members of each object are unequal.
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic static bool operator !=(
	Rect2d lhs,
	Rect2d rhs
)
Public Shared Operator <> ( 
	lhs As Rect2d,
	rhs As Rect2d
) As Boolean
public:
static bool operator !=(
	Rect2d lhs, 
	Rect2d rhs
)
static let inline (<>)
        lhs : Rect2d * 
        rhs : Rect2d  : boolJavaScript does not support overloaded operators.
Parameters
- lhs
- Type: OpenCvSharpRect2d
 A Point to compare.
- rhs
- Type: OpenCvSharpRect2d
 A Point to compare.
Return Value
Type: 
BooleanThis operator returns true if the members of left and right are unequal; otherwise, false.
 See Also
See Also