Class ImplEdgeNonMaxSuppression
java.lang.Object
boofcv.alg.feature.detect.edge.impl.ImplEdgeNonMaxSuppression
Algorithms for performing non-max suppression. Edge intensities are set to zero if adjacent pixels
have a value greater than the current value. Adjacency is determined by the gradients
discretized direction.
NOTE: This is technically not true non-maximum suppression because equal values are allowed.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidJust processes the image border.static voidJust processes the image border.static voidOnly processes the inner image.static voidOnly processes the inner image.static voidSlow algorithm which processes the whole image.static voidSlow algorithm which processes the whole image.
-
Constructor Details
-
ImplEdgeNonMaxSuppression
public ImplEdgeNonMaxSuppression()
-
-
Method Details
-
inner4
Only processes the inner image. Ignoring the border. -
naive4
Slow algorithm which processes the whole image. -
border4
Just processes the image border. -
inner8
Only processes the inner image. Ignoring the border. -
naive8
Slow algorithm which processes the whole image. -
border8
Just processes the image border.
-