| RectIntersect Method (Rect, Rect) |
Determines the Rect structure that represents the intersection of two rectangles.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static Rect Intersect(
Rect a,
Rect b
)
Public Shared Function Intersect (
a As Rect,
b As Rect
) As Rect
public:
static Rect Intersect(
Rect a,
Rect b
)
static member Intersect :
a : Rect *
b : Rect -> Rect
Parameters
- a
- Type: OpenCvSharpRect
A rectangle to intersect. - b
- Type: OpenCvSharpRect
A rectangle to intersect.
Return Value
Type:
Rect[Missing <returns> documentation for "M:OpenCvSharp.Rect.Intersect(OpenCvSharp.Rect,OpenCvSharp.Rect)"]
See Also