Click or drag to resize
CvInvokeFillConvexPoly Method
http://www.emgu.com
Fills convex polygon interior. This function is much faster than The function cvFillPoly and can fill not only the convex polygons but any monotonic polygon, i.e. a polygon whose contour intersects every horizontal line (scan line) twice at the most

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 FillConvexPoly(
	IInputOutputArray img,
	IInputArray points,
	MCvScalar color,
	LineType lineType = LineType.EightConnected,
	int shift = 0
)

Parameters

img
Type: Emgu.CVIInputOutputArray
Image
points
Type: Emgu.CVIInputArray
Array of pointers to a single polygon
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
See Also