LineSegmentDetector.DrawSegments Method
|
Draws the line segments on a given image.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic virtual void DrawSegments(
InputOutputArray image,
InputArray lines
)
Public Overridable Sub DrawSegments (
image As InputOutputArray,
lines As InputArray
)
public:
virtual void DrawSegments(
InputOutputArray^ image,
InputArray^ lines
)
abstract DrawSegments :
image : InputOutputArray *
lines : InputArray -> unit
override DrawSegments :
image : InputOutputArray *
lines : InputArray -> unit
function DrawSegments(image, lines);
Parameters
- image
- Type: OpenCvSharp.InputOutputArray
The image, where the liens will be drawn.
Should be bigger or equal to the image, where the lines were found. - lines
- Type: OpenCvSharp.InputArray
A vector of the lines that needed to be drawn.
See Also