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)
Syntaxpublic void DrawSegments(
IInputOutputArray image,
LineSegment2DF[] lines,
bool drawArrows = false
)
Public Sub DrawSegments (
image As IInputOutputArray,
lines As LineSegment2DF(),
Optional drawArrows As Boolean = false
)
public:
void DrawSegments(
IInputOutputArray^ image,
array<LineSegment2DF>^ lines,
bool drawArrows = false
)
member DrawSegments :
image : IInputOutputArray *
lines : LineSegment2DF[] *
?drawArrows : bool
(* Defaults:
let _drawArrows = defaultArg drawArrows false
*)
-> unit
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