Rect2f.BitwiseAnd Operator
|
Determines the Rect2f structure that represents the intersection of two rectangles.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic 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
JavaScript does not support overloaded operators.
Parameters
- a
- Type: OpenCvSharp.Rect2f
A rectangle to intersect. - b
- Type: OpenCvSharp.Rect2f
A rectangle to intersect.
Return Value
Type:
Rect2f
See Also