Draw the polyline defined by the array of 2D points

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

Syntax

C#
public void DrawPolyline(
	PointF[] pts,
	bool isClosed,
	TColor color,
	int thickness
)
Visual Basic (Declaration)
Public Sub DrawPolyline ( _
	pts As PointF(), _
	isClosed As Boolean, _
	color As TColor, _
	thickness As Integer _
)
Visual C++
public:
void DrawPolyline(
	array<PointF>^ pts, 
	bool isClosed, 
	TColor color, 
	int thickness
)

Parameters

pts
Type: array< System.Drawing..::.PointF >[]()[]
the points that defines the poly line
isClosed
Type: System..::.Boolean
if true, the last line segment is defined by the last point of the array and the first point of the array
color
Type: TColor
the color used for drawing
thickness
Type: System..::.Int32
the thinkness of the line

See Also