| Rect2dBitwiseAnd Operator |
Determines the Rect2d structure that represents the intersection of two rectangles.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static Rect2d operator &(
Rect2d a,
Rect2d b
)
Public Shared Operator And (
a As Rect2d,
b As Rect2d
) As Rect2d
public:
static Rect2d operator &(
Rect2d a,
Rect2d b
)
static let inline (&&&)
a : Rect2d *
b : Rect2d : Rect2d
Parameters
- a
- Type: OpenCvSharpRect2d
A rectangle to intersect. - b
- Type: OpenCvSharpRect2d
A rectangle to intersect.
Return Value
Type:
Rect2d[Missing <returns> documentation for "M:OpenCvSharp.Rect2d.op_BitwiseAnd(OpenCvSharp.Rect2d,OpenCvSharp.Rect2d)"]
See Also