ImageTColor, TDepthFillConvexPoly Method |
http://www.emgu.com
Fill the convex polygon with the specific color
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic void FillConvexPoly(
Point[] pts,
TColor color,
LineType lineType = LineType.EightConnected,
int shift = 0
)
Public Sub FillConvexPoly (
pts As Point(),
color As TColor,
Optional lineType As LineType = LineType.EightConnected,
Optional shift As Integer = 0
)
public:
void FillConvexPoly(
array<Point>^ pts,
TColor color,
LineType lineType = LineType::EightConnected,
int shift = 0
)
member FillConvexPoly :
pts : Point[] *
color : 'TColor *
?lineType : LineType *
?shift : int
(* Defaults:
let _lineType = defaultArg lineType LineType.EightConnected
let _shift = defaultArg shift 0
*)
-> unit
Parameters
- pts
- Type: System.DrawingPoint
The array of points that define the convex polygon - color
- Type: TColor
The color to fill the polygon with - lineType (Optional)
- Type: Emgu.CV.CvEnumLineType
Line type - shift (Optional)
- Type: SystemInt32
Number of fractional bits in the center coordinates and radius value
See Also