Cv2ClipLine Method (Rect, Point, Point)
|
Clips the line against the image rectangle
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static bool ClipLine(
Rect imgRect,
ref Point pt1,
ref Point pt2
)
Public Shared Function ClipLine (
imgRect As Rect,
ByRef pt1 As Point,
ByRef pt2 As Point
) As Boolean
public:
static bool ClipLine(
Rect imgRect,
Point% pt1,
Point% pt2
)
static member ClipLine :
imgRect : Rect *
pt1 : Point byref *
pt2 : Point byref -> bool
OpenCvSharp.Cv2.ClipLine = function(imgRect, pt1, pt2);
Parameters
- imgRect
- Type: OpenCvSharpRect
sThe image rectangle - pt1
- Type: OpenCvSharpPoint
The first line point - pt2
- Type: OpenCvSharpPoint
The second line point
Return Value
Type:
Boolean
See Also