Draw the polyline defined by the array of 2D points

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

Syntax

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

Parameters

pts
array<Point>[]()[][]
A polyline defined by its point
isClosed
Boolean
if true, the last line segment is defined by the last point of the array and the first point of the array
color
TColor
the color used for drawing
thickness
Int32
the thinkness of the line

See Also