RectUnion Method (Rect, Rect)
|
Gets a Rect structure that contains the union of two Rect structures.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static Rect Union(
Rect a,
Rect b
)
Public Shared Function Union (
a As Rect,
b As Rect
) As Rect
public:
static Rect Union(
Rect a,
Rect b
)
static member Union :
a : Rect *
b : Rect -> Rect
OpenCvSharp.Rect.Union = function(a, b);
Parameters
- a
- Type: OpenCvSharpRect
A rectangle to union. - b
- Type: OpenCvSharpRect
A rectangle to union.
Return Value
Type:
Rect
See Also