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