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
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
Just processes the image border.static void
Just processes the image border.static void
Only processes the inner image.static void
Only processes the inner image.static void
Slow algorithm which processes the whole image.static void
Slow 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.
-