| LineSegmentPointIntersectedSegments Method (LineSegmentPoint, LineSegmentPoint) | 
        
         
            Returns a boolean value indicating whether the specified two segments intersect.
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic static bool IntersectedSegments(
	LineSegmentPoint seg1,
	LineSegmentPoint seg2
)
Public Shared Function IntersectedSegments ( 
	seg1 As LineSegmentPoint,
	seg2 As LineSegmentPoint
) As Boolean
public:
static bool IntersectedSegments(
	LineSegmentPoint seg1, 
	LineSegmentPoint seg2
)
static member IntersectedSegments : 
        seg1 : LineSegmentPoint * 
        seg2 : LineSegmentPoint -> bool 
OpenCvSharp.LineSegmentPoint.IntersectedSegments = function(seg1, seg2);
Parameters
- seg1
- Type: OpenCvSharpLineSegmentPoint
 
- seg2
- Type: OpenCvSharpLineSegmentPoint
 
Return Value
Type: 
Boolean See Also
See Also