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