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