| RectInequality Operator |
Compares two Rect objects. The result specifies whether the members of each object are unequal.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static bool operator !=(
Rect lhs,
Rect rhs
)
Public Shared Operator <> (
lhs As Rect,
rhs As Rect
) As Boolean
public:
static bool operator !=(
Rect lhs,
Rect rhs
)
static let inline (<>)
lhs : Rect *
rhs : Rect : bool
Parameters
- lhs
- Type: OpenCvSharpRect
A Point to compare. - rhs
- Type: OpenCvSharpRect
A Point to compare.
Return Value
Type:
BooleanThis operator returns true if the members of left and right are unequal; otherwise, false.
See Also