http://www.emgu.com
Draw the polylines defined by the array of array of 2D points
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public void DrawPolyline(
Point[][] pts,
bool isClosed,
TColor color,
int thickness
) |
Visual Basic |
---|
Public Sub DrawPolyline ( _
pts As Point()(), _
isClosed As Boolean, _
color As TColor, _
thickness As Integer _
) |
Visual C++ |
---|
public:
void DrawPolyline(
array<array<Point>^>^ pts,
bool isClosed,
TColor color,
int thickness
) |
Parameters
- pts
- Type: array<array<System.Drawing..::..Point>[]()[][]>[]()[][]
An array of polylines each represented by an array of points
- 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