StructuredEdgeDetection
Objective-C
@interface StructuredEdgeDetection : Algorithm
Swift
class StructuredEdgeDetection : Algorithm
Class implementing edge detection algorithm from CITE: Dollar2013 :
Member of Ximgproc
-
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. SobelDeclaration
Parameters
_srcsource image (RGB, float, in [0;1]) to detect edges
_dstdestination image (grayscale, float, in [0;1]) where edges are drawn
See
Sobel,Canny -
The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
Declaration
Parameters
edge_imageedge image from detectEdges function.
orientation_imageorientation image from computeOrientation function.
_dstsuppressed image (grayscale, float, in [0;1])
rradius for NMS suppression.
sradius for boundary suppression.
mmultiplier for conservative suppression.
isParallelenables/disables parallel computing.
-
The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
Declaration
Parameters
edge_imageedge image from detectEdges function.
orientation_imageorientation image from computeOrientation function.
_dstsuppressed image (grayscale, float, in [0;1])
rradius for NMS suppression.
sradius for boundary suppression.
mmultiplier for conservative suppression.
-
The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
Declaration
Parameters
edge_imageedge image from detectEdges function.
orientation_imageorientation image from computeOrientation function.
_dstsuppressed image (grayscale, float, in [0;1])
rradius for NMS suppression.
sradius for boundary suppression.
-
The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
Declaration
Parameters
edge_imageedge image from detectEdges function.
orientation_imageorientation image from computeOrientation function.
_dstsuppressed image (grayscale, float, in [0;1])
rradius for NMS suppression.
-
The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
Declaration
Parameters
edge_imageedge image from detectEdges function.
orientation_imageorientation image from computeOrientation function.
_dstsuppressed image (grayscale, float, in [0;1])
View on GitHub
StructuredEdgeDetection Class Reference