| Size2dEquality Operator |
Compares two CvPoint 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 ==(
Size2d lhs,
Size2d rhs
)
Public Shared Operator = (
lhs As Size2d,
rhs As Size2d
) As Boolean
public:
static bool operator ==(
Size2d lhs,
Size2d rhs
)
static let inline (=)
lhs : Size2d *
rhs : Size2d : bool
Parameters
- lhs
- Type: OpenCvSharpSize2d
A Point to compare. - rhs
- Type: OpenCvSharpSize2d
A Point to compare.
Return Value
Type:
BooleanThis operator returns true if the members of left and right are equal; otherwise, false.
See Also