  | FastLineDetectorDrawSegments Method (InputOutputArray, IEnumerableVec4f, Boolean) | 
 
            Draws the line segments on a given image.
            
 
    Namespace: 
   OpenCvSharp.XImgProc
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntaxpublic virtual void DrawSegments(
	InputOutputArray image,
	IEnumerable<Vec4f> lines,
	bool drawArrow = false
)
Public Overridable Sub DrawSegments ( 
	image As InputOutputArray,
	lines As IEnumerable(Of Vec4f),
	Optional drawArrow As Boolean = false
)
public:
virtual void DrawSegments(
	InputOutputArray^ image, 
	IEnumerable<Vec4f>^ lines, 
	bool drawArrow = false
)
abstract DrawSegments : 
        image : InputOutputArray * 
        lines : IEnumerable<Vec4f> * 
        ?drawArrow : bool 
(* Defaults:
        let _drawArrow = defaultArg drawArrow false
*)
-> unit 
override DrawSegments : 
        image : InputOutputArray * 
        lines : IEnumerable<Vec4f> * 
        ?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: System.Collections.GenericIEnumerableVec4f
A vector of the lines that needed to be drawn. - drawArrow (Optional)
 - Type: SystemBoolean
If true, arrow heads will be drawn. 
See Also