| Point2fEquality Operator |
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: 1.0.0
Syntax public static bool operator ==(
Point2f lhs,
Point2f rhs
)
Public Shared Operator = (
lhs As Point2f,
rhs As Point2f
) As Boolean
public:
static bool operator ==(
Point2f lhs,
Point2f rhs
)
static let inline (=)
lhs : Point2f *
rhs : Point2f : bool
Parameters
- lhs
- Type: OpenCvSharpPoint2f
A Point to compare. - rhs
- Type: OpenCvSharpPoint2f
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