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