Draw a rectangle in the map

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public void Draw(
	RectangleF rect,
	TColor color,
	int thickness
)
Public Sub Draw ( _
	rect As RectangleF, _
	color As TColor, _
	thickness As Integer _
)
public:
void Draw(
	RectangleF rect, 
	TColor color, 
	int thickness
)

Parameters

rect
RectangleF
The rectangle to draw
color
TColor
The color for the rectangle
thickness
Int32
The thickness of the rectangle, any value less than or equal to 0 will result in a filled rectangle

See Also