Click or drag to resize

Cv2Line Method (InputOutputArray, Point, Point, Scalar, Int32, LineTypes, Int32)

Draws a line segment connecting two points

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void Line(
	InputOutputArray img,
	Point pt1,
	Point pt2,
	Scalar color,
	int thickness = 1,
	LineTypes lineType = LineTypes.Link8,
	int shift = 0
)

Parameters

img
Type: OpenCvSharpInputOutputArray
The image.
pt1
Type: OpenCvSharpPoint
First point of the line segment.
pt2
Type: OpenCvSharpPoint
Second point 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