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.0.1.0 (2.0.1.0)

Syntax

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

Parameters

p1
Type: Emgu.CV.Structure..::.MCvPoint3D32f
The first point on the line segment
p2
Type: Emgu.CV.Structure..::.MCvPoint3D32f
The second point on the line segment

See Also