| RectBitwiseOr Operator |
Gets a Rect structure that contains the union of two Rect structures.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static Rect operator |(
Rect a,
Rect b
)
Public Shared Operator Or (
a As Rect,
b As Rect
) As Rect
public:
static Rect operator |(
Rect a,
Rect b
)
static let inline (|||)
a : Rect *
b : Rect : Rect
Parameters
- a
- Type: OpenCvSharpRect
A rectangle to union. - b
- Type: OpenCvSharpRect
A rectangle to union.
Return Value
Type:
Rect[Missing <returns> documentation for "M:OpenCvSharp.Rect.op_BitwiseOr(OpenCvSharp.Rect,OpenCvSharp.Rect)"]
See Also