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++ |
Parameters
- externalColor
- TColor
Color of the external contours
- holeColor
- TColor
Color of internal contours (holes).
- maxLevel
- Int32
Maximal level for drawn contours. If 0, only contour is drawn. If 1, the contour and all contours after it on the same level are drawn. If 2, all contours after and all contours one level below the contours are drawn, etc. If the value is negative, the function does not draw the contours following after contour but draws child contours of contour up to abs(maxLevel)-1 level
- thickness
- Int32
Thickness of lines the contours are drawn with. If it is negative, the contour interiors are drawn
- offset
- Point
Shift all the point coordinates by the specified value. It is useful in case if the contours retrived in some image ROI and then the ROI offset needs to be taken into account during the rendering