Create a line segment with the specific start point and end point

Namespace:  Emgu.CV.Structure
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public LineSegment2DF(
	PointF p1,
	PointF p2
)
Public Sub New ( _
	p1 As PointF, _
	p2 As PointF _
)
public:
LineSegment2DF(
	PointF p1, 
	PointF p2
)

Parameters

p1
PointF
The first point on the line segment
p2
PointF
The second point on the line segment

See Also