Draws a line segment connecting two points
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public void DrawLine( int pt1X, int pt1Y, int pt2X, int pt2Y, CvScalar color, int thickness, LineType lineType )
Parameters
- pt1X
- Type: SystemInt32
First point's x-coordinate of the line segment. - pt1Y
- Type: SystemInt32
First point's y-coordinate of the line segment. - pt2X
- Type: SystemInt32
Second point's x-coordinate of the line segment. - pt2Y
- Type: SystemInt32
Second point's y-coordinate of the line segment. - color
- Type: OpenCvSharpCvScalar
Line color. - thickness
- Type: SystemInt32
Line thickness. - lineType
- Type: OpenCvSharpLineType
Type of the line.
See Also