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

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

Syntax

C#
public LineSegment2D(
	Point p1,
	Point p2
)
Visual Basic (Declaration)
Public Sub New ( _
	p1 As Point, _
	p2 As Point _
)
Visual C++
public:
LineSegment2D(
	Point p1, 
	Point p2
)

Parameters

p1
Type: System.Drawing..::.Point
The first point on the line segment
p2
Type: System.Drawing..::.Point
The second point on the line segment

See Also