Click or drag to resize

MatLine Method (Int32, Int32, Int32, Int32, Scalar, Int32, LineTypes, Int32)

Draws a line segment connecting two points

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public void Line(
	int pt1X,
	int pt1Y,
	int pt2X,
	int pt2Y,
	Scalar color,
	int thickness = 1,
	LineTypes lineType = LineTypes.Link8,
	int shift = 0
)

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: OpenCvSharpScalar
Line color.
thickness (Optional)
Type: SystemInt32
Line thickness. [By default this is 1]
lineType (Optional)
Type: OpenCvSharpLineTypes
Type of the line. [By default this is LineType.Link8]
shift (Optional)
Type: SystemInt32
Number of fractional bits in the point coordinates. [By default this is 0]
See Also