StructuredEdgeDetectionDetectEdges Method |
http://www.emgu.com
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:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic void DetectEdges(
IInputArray src,
IOutputArray dst
)
Public Sub DetectEdges (
src As IInputArray,
dst As IOutputArray
)
public:
void DetectEdges(
IInputArray^ src,
IOutputArray^ dst
)
member DetectEdges :
src : IInputArray *
dst : IOutputArray -> unit
Parameters
- src
- Type: Emgu.CVIInputArray
source image (RGB, float, in [0;1]) to detect edges - dst
- Type: Emgu.CVIOutputArray
destination image (grayscale, float, in [0;1]) where edges are drawn
See Also