MapTColor, TDepthDrawPolyline Method (PointF, Boolean, TColor, Int32) |
http://www.emgu.com
Draw the polyline defined by the array of 2D points
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic void DrawPolyline(
PointF[] pts,
bool isClosed,
TColor color,
int thickness
)
Public Sub DrawPolyline (
pts As PointF(),
isClosed As Boolean,
color As TColor,
thickness As Integer
)
public:
void DrawPolyline(
array<PointF>^ pts,
bool isClosed,
TColor color,
int thickness
)
member DrawPolyline :
pts : PointF[] *
isClosed : bool *
color : 'TColor *
thickness : int -> unit
Parameters
- pts
- Type: System.DrawingPointF
the points that defines the poly line - 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
- Type: SystemInt32
the thinkness of the line
See Also