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.2.1.1150 (2.2.1.1150)
Syntax
| | | | | | | | |
| C# | | | Visual Basic | | | Visual C++ | |
public void Draw(
Seq<Point> c,
TColor color,
int thickness
)
Public Sub Draw ( _
c As Seq(Of Point), _
color As TColor, _
thickness As Integer _
)
public:
void Draw(
Seq<Point>^ c,
TColor color,
int thickness
)
Parameters
- c
- Seq<(Of <(<'Point>)>)>
Pointer to the contour
- color
- TColor
Color of the contour
- thickness
- Int32
Thickness of lines the contours are drawn with. If it is negative, the contour interiors are drawn
See Also