| StructuredEdgeDetectionDetectEdges Method |
The function detects edges in src and draw them to dst.
The algorithm underlies this function is much more robust to texture presence, than common approaches, e.g.Sobel
Namespace:
OpenCvSharp.XImgProc
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public virtual void DetectEdges(
InputArray src,
OutputArray dst
)
Public Overridable Sub DetectEdges (
src As InputArray,
dst As OutputArray
)
public:
virtual void DetectEdges(
InputArray^ src,
OutputArray^ dst
)
abstract DetectEdges :
src : InputArray *
dst : OutputArray -> unit
override DetectEdges :
src : InputArray *
dst : OutputArray -> unit
Parameters
- src
- Type: OpenCvSharpInputArray
source image (RGB, float, in [0;1]) to detect edges - dst
- Type: OpenCvSharpOutputArray
destination image (grayscale, float, in [0;1]) where edges are drawn
See Also