http://www.emgu.com
Draws contour outlines in the image if thickness>=0 or fills area bounded by the contours if thickness<0
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public void Draw(
Seq<Point> c,
TColor color,
int thickness
) |
Visual Basic |
---|
Public Sub Draw ( _
c As Seq(Of Point), _
color As TColor, _
thickness As Integer _
) |
Visual C++ |
---|
public:
void Draw(
Seq<Point>^ c,
TColor color,
int thickness
) |
Parameters
- c
- Type: Emgu.CV..::..Seq<(Of <(<'Point>)>)>
Pointer to the contour
- color
- Type: TColor
Color of the contour
- thickness
- Type: System..::..Int32
Thickness of lines the contours are drawn with. If it is negative, the contour interiors are drawn
See Also