Click or drag to resize

FastLineDetectorDrawSegments Method

http://www.emgu.com
Draws the line segments on a given image.

Namespace:  Emgu.CV.XImgproc
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public void DrawSegments(
	IInputOutputArray image,
	LineSegment2DF[] lines,
	bool drawArrows = false
)

Parameters

image
Type: Emgu.CVIInputOutputArray
The image, where the lines will be drawn. Should be bigger or equal to the image, where the lines were found.
lines
Type: Emgu.CV.StructureLineSegment2DF
A vector of the lines that needed to be drawn.
drawArrows (Optional)
Type: SystemBoolean
If true, arrow heads will be drawn.
See Also