Rect2dIntersect Method (Rect2d, Rect2d)
|
Determines the Rect2d structure that represents the intersection of two rectangles.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static Rect2d Intersect(
Rect2d a,
Rect2d b
)
Public Shared Function Intersect (
a As Rect2d,
b As Rect2d
) As Rect2d
public:
static Rect2d Intersect(
Rect2d a,
Rect2d b
)
static member Intersect :
a : Rect2d *
b : Rect2d -> Rect2d
OpenCvSharp.Rect2d.Intersect = function(a, b);
Parameters
- a
- Type: OpenCvSharpRect2d
A rectangle to intersect. - b
- Type: OpenCvSharpRect2d
A rectangle to intersect.
Return Value
Type:
Rect2d
See Also