Click or drag to resize
CvInvokeFillPoly Method
http://www.emgu.com
Fills the area bounded by one or more polygons.

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax
public static void FillPoly(
	IInputOutputArray img,
	IInputArray points,
	MCvScalar color,
	LineType lineType = LineType.EightConnected,
	int shift = 0,
	Point offset = null
)

Parameters

img
Type: Emgu.CVIInputOutputArray
Image.
points
Type: Emgu.CVIInputArray
Array of polygons where each polygon is represented as an array of points.
color
Type: Emgu.CV.StructureMCvScalar
Polygon color
lineType (Optional)
Type: Emgu.CV.CvEnumLineType
Type of the polygon boundaries.
shift (Optional)
Type: SystemInt32
Number of fractional bits in the vertex coordinates.
offset (Optional)
Type: System.DrawingPoint
Optional offset of all points of the contours.
See Also