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