Draws simple, thick or filled rectangle
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public void DrawRect( int pt1X, int pt1Y, int pt2X, int pt2Y, CvScalar color, int thickness, LineType lineType )
Parameters
- pt1X
- Type: SystemInt32
X-coordinate of the one of the rectangle vertices. - pt1Y
- Type: SystemInt32
Y-coordinate of the one of the rectangle vertices. - pt2X
- Type: SystemInt32
X-coordinate of the opposite rectangle vertex. - pt2Y
- Type: SystemInt32
Y-coordinate of the opposite rectangle vertex. - color
- Type: OpenCvSharpCvScalar
Line color (RGB) or brightness (grayscale image). - thickness
- Type: SystemInt32
Thickness of lines that make up the rectangle. Negative values, e.g. CV_FILLED, make the function to draw a filled rectangle. - lineType
- Type: OpenCvSharpLineType
Type of the line, see cvLine description.
See Also