Draws a rectangle with two opposite corners pt1 and pt2

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 static void cvRectangle(
	IntPtr img,
	Point pt1,
	Point pt2,
	MCvScalar color,
	int thickness,
	LINE_TYPE lineType,
	int shift
)
Public Shared Sub cvRectangle ( _
	img As IntPtr, _
	pt1 As Point, _
	pt2 As Point, _
	color As MCvScalar, _
	thickness As Integer, _
	lineType As LINE_TYPE, _
	shift As Integer _
)
public:
static void cvRectangle(
	IntPtr img, 
	Point pt1, 
	Point pt2, 
	MCvScalar color, 
	int thickness, 
	LINE_TYPE lineType, 
	int shift
)

Parameters

img
IntPtr
Image
pt1
Point
One of the rectangle vertices
pt2
Point
Opposite rectangle vertex
color
MCvScalar
Line color
thickness
Int32
Thickness of lines that make up the rectangle. Negative values make the function to draw a filled rectangle.
lineType
LINE_TYPE
Type of the line
shift
Int32
Number of fractional bits in the point coordinates

See Also