Click or drag to resize

ImageTColor, TDepthDrawPolyline Method (Point, Boolean, TColor, Int32, LineType, Int32)

http://www.emgu.com
Draw the polyline defined by the array of 2D points

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public void DrawPolyline(
	Point[] pts,
	bool isClosed,
	TColor color,
	int thickness = 1,
	LineType lineType = LineType.EightConnected,
	int shift = 0
)

Parameters

pts
Type: System.DrawingPoint
A polyline defined by its point
isClosed
Type: SystemBoolean
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 (Optional)
Type: SystemInt32
the thinkness of the line
lineType (Optional)
Type: Emgu.CV.CvEnumLineType
Line type
shift (Optional)
Type: SystemInt32
Number of fractional bits in the center coordinates and radius value
See Also