boofcv.alg.feature.detect.edge.impl
Class ImplEdgeNonMaxSuppression
- java.lang.Object
-
- boofcv.alg.feature.detect.edge.impl.ImplEdgeNonMaxSuppression
-
public class ImplEdgeNonMaxSuppression extends java.lang.ObjectAlgorithms 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 Constructor and Description ImplEdgeNonMaxSuppression()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static voidborder4(GrayF32 _intensity, GrayS8 direction, GrayF32 output)Just processes the image border.static voidborder8(GrayF32 _intensity, GrayS8 direction, GrayF32 output)Just processes the image border.static voidinner4(GrayF32 intensity, GrayS8 direction, GrayF32 output)Only processes the inner image.static voidinner8(GrayF32 intensity, GrayS8 direction, GrayF32 output)Only processes the inner image.static voidnaive4(GrayF32 _intensity, GrayS8 direction, GrayF32 output)Slow algorithm which processes the whole image.static voidnaive8(GrayF32 _intensity, GrayS8 direction, GrayF32 output)Slow algorithm which processes the whole image.
-
-
-
Method Detail
-
inner4
public static void inner4(GrayF32 intensity, GrayS8 direction, GrayF32 output)
Only processes the inner image. Ignoring the border.
-
naive4
public static void naive4(GrayF32 _intensity, GrayS8 direction, GrayF32 output)
Slow algorithm which processes the whole image.
-
border4
public static void border4(GrayF32 _intensity, GrayS8 direction, GrayF32 output)
Just processes the image border.
-
inner8
public static void inner8(GrayF32 intensity, GrayS8 direction, GrayF32 output)
Only processes the inner image. Ignoring the border.
-
naive8
public static void naive8(GrayF32 _intensity, GrayS8 direction, GrayF32 output)
Slow algorithm which processes the whole image.
-
-
DataMelt 3.0 © DataMelt by jWork.ORG