Click or drag to resize

PointEquality Operator

Compares two Point objects. The result specifies whether the values of the X and Y properties of the two Point objects are equal.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static bool operator ==(
	Point lhs,
	Point rhs
)

Parameters

lhs
Type: OpenCvSharpPoint
A Point to compare.
rhs
Type: OpenCvSharpPoint
A Point to compare.

Return Value

Type: Boolean
This operator returns true if the X and Y values of left and right are equal; otherwise, false.
See Also