ImageTColor, TDepthDraw Method (CircleF, TColor, Int32, LineType, Int32) |
http://www.emgu.com Draw a Circle of the specific color and thickness
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic virtual void Draw(
CircleF circle,
TColor color,
int thickness = 1,
LineType lineType = LineType.EightConnected,
int shift = 0
)
Public Overridable Sub Draw (
circle As CircleF,
color As TColor,
Optional thickness As Integer = 1,
Optional lineType As LineType = LineType.EightConnected,
Optional shift As Integer = 0
)
public:
virtual void Draw(
CircleF circle,
TColor color,
int thickness = 1,
LineType lineType = LineType::EightConnected,
int shift = 0
)
abstract Draw :
circle : CircleF *
color : 'TColor *
?thickness : int *
?lineType : LineType *
?shift : int
(* Defaults:
let _thickness = defaultArg thickness 1
let _lineType = defaultArg lineType LineType.EightConnected
let _shift = defaultArg shift 0
*)
-> unit
override Draw :
circle : CircleF *
color : 'TColor *
?thickness : int *
?lineType : LineType *
?shift : int
(* Defaults:
let _thickness = defaultArg thickness 1
let _lineType = defaultArg lineType LineType.EightConnected
let _shift = defaultArg shift 0
*)
-> unit
Parameters
- circle
- Type: Emgu.CV.StructureCircleF
The circle to be drawn - color
- Type: TColor
The color of the circle - thickness (Optional)
- Type: SystemInt32
If thickness is less than 1, the circle is filled up - 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