| FastLineDetectorDrawSegments Method (InputOutputArray, InputArray, Boolean) |
Draws the line segments on a given image.
Namespace:
OpenCvSharp.XImgProc
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public virtual void DrawSegments(
InputOutputArray image,
InputArray lines,
bool drawArrow = false
)
Public Overridable Sub DrawSegments (
image As InputOutputArray,
lines As InputArray,
Optional drawArrow As Boolean = false
)
public:
virtual void DrawSegments(
InputOutputArray^ image,
InputArray^ lines,
bool drawArrow = false
)
abstract DrawSegments :
image : InputOutputArray *
lines : InputArray *
?drawArrow : bool
(* Defaults:
let _drawArrow = defaultArg drawArrow false
*)
-> unit
override DrawSegments :
image : InputOutputArray *
lines : InputArray *
?drawArrow : bool
(* Defaults:
let _drawArrow = defaultArg drawArrow false
*)
-> unit
Parameters
- image
- Type: OpenCvSharpInputOutputArray
The image, where the lines will be drawn. Should be bigger or equal to the image, where the lines were found. - lines
- Type: OpenCvSharpInputArray
A vector of the lines that needed to be drawn. - drawArrow (Optional)
- Type: SystemBoolean
If true, arrow heads will be drawn.
See Also