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