Draw a line segment using the specific color and thickness

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public virtual void Draw(
	LineSegment2D line,
	TColor color,
	int thickness
)
Visual Basic (Declaration)
Public Overridable Sub Draw ( _
	line As LineSegment2D, _
	color As TColor, _
	thickness As Integer _
)
Visual C++
public:
virtual void Draw(
	LineSegment2D line, 
	TColor color, 
	int thickness
)

Parameters

line
Type: Emgu.CV.Structure..::.LineSegment2D
The line segment to be drawn
color
Type: TColor
The color of the line segment
thickness
Type: System..::.Int32
The thickness of the line segment

See Also