LineSegmentPoint.SegmentIntersection Method (LineSegmentPoint, LineSegmentPoint)
|
Calculates a intersection of the specified two segments
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static Nullable<Point> SegmentIntersection(
LineSegmentPoint seg1,
LineSegmentPoint seg2
)
Public Shared Function SegmentIntersection (
seg1 As LineSegmentPoint,
seg2 As LineSegmentPoint
) As Nullable(Of Point)
public:
static Nullable<Point> SegmentIntersection(
LineSegmentPoint seg1,
LineSegmentPoint seg2
)
static member SegmentIntersection :
seg1 : LineSegmentPoint *
seg2 : LineSegmentPoint -> Nullable<Point>
OpenCvSharp.LineSegmentPoint.SegmentIntersection = function(seg1, seg2);
Parameters
- seg1
- Type: OpenCvSharp.LineSegmentPoint
- seg2
- Type: OpenCvSharp.LineSegmentPoint
Return Value
Type:
Nullable<Point>
See Also