Draws contour outlines in the image if thickness>=0 or fills area bounded by the contours if thickness<0
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public void Draw(
Seq<Point> c,
TColor color,
int thickness
) |
Visual Basic (Declaration) |
---|
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