Class ImplEdgeNonMaxSuppressionCrude

java.lang.Object
boofcv.alg.feature.detect.edge.impl.ImplEdgeNonMaxSuppressionCrude

public class ImplEdgeNonMaxSuppressionCrude extends Object

Implementations of the crude version of non-maximum edge suppression. If the gradient is positive or negative is used to determine the direction of suppression. This is faster since an expensive orientation calculation is avoided.

DO NOT MODIFY. Generated by GenerateImplEdgeNonMaxSuppressionCrude.

  • Constructor Details

    • ImplEdgeNonMaxSuppressionCrude

      public ImplEdgeNonMaxSuppressionCrude()
  • Method Details

    • inner4

      public static void inner4(GrayF32 intensity, GrayF32 derivX, GrayF32 derivY, GrayF32 output)
      Only processes the inner image. Ignoring the border.
    • inner4

      public static void inner4(GrayF32 intensity, GrayS16 derivX, GrayS16 derivY, GrayF32 output)
      Only processes the inner image. Ignoring the border.
    • inner4

      public static void inner4(GrayF32 intensity, GrayS32 derivX, GrayS32 derivY, GrayF32 output)
      Only processes the inner image. Ignoring the border.
    • border4

      public static void border4(GrayF32 _intensity, GrayF32 derivX, GrayF32 derivY, GrayF32 output)
      Just processes the image border.
    • border4

      public static void border4(GrayF32 _intensity, GrayI derivX, GrayI derivY, GrayF32 output)
      Just processes the image border.