Draws simple, thick or filled rectangle
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void DrawRect( CvArr img, CvRect rect, CvScalar color, int thickness, LineType lineType, int shift )
Parameters
- img
- Type: OpenCvSharpCvArr
Image. - rect
- Type: OpenCvSharpCvRect
Rectangle. - 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. - shift
- Type: SystemInt32
Number of fractional bits in the point coordinates.
See Also