boofcv.alg.filter.convolve
Class ConvolveImageMean
- java.lang.Object
-
- boofcv.alg.filter.convolve.ConvolveImageMean
-
public class ConvolveImageMean extends java.lang.ObjectConvolves a mean filter across the image. The mean value of all the pixels are computed inside the kernel.
-
-
Constructor Summary
Constructors Constructor and Description ConvolveImageMean()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static voidhorizontal(GrayF32 input, GrayF32 output, int radius)Performs a horizontal 1D convolution which computes the mean value of elements inside the kernel.static voidhorizontal(GrayS16 input, GrayI16 output, int radius)Performs a horizontal 1D convolution which computes the mean value of elements inside the kernel.static voidhorizontal(GrayU8 input, GrayU8 output, int radius)Performs a horizontal 1D convolution which computes the mean value of elements inside the kernel.static voidvertical(GrayF32 input, GrayF32 output, int radius)Performs a vertical 1D convolution which computes the mean value of elements inside the kernel.static voidvertical(GrayS16 input, GrayI16 output, int radius)Performs a vertical 1D convolution which computes the mean value of elements inside the kernel.static voidvertical(GrayU8 input, GrayI8 output, int radius)Performs a vertical 1D convolution which computes the mean value of elements inside the kernel.
-
-
-
Method Detail
-
horizontal
public static void horizontal(GrayF32 input, GrayF32 output, int radius)
Performs a horizontal 1D convolution which computes the mean value of elements inside the kernel.- Parameters:
input- The original image. Not modified.output- Where the resulting image is written to. Modified.radius- Kernel size.
-
vertical
public static void vertical(GrayF32 input, GrayF32 output, int radius)
Performs a vertical 1D convolution which computes the mean value of elements inside the kernel.- Parameters:
input- The original image. Not modified.output- Where the resulting image is written to. Modified.radius- Kernel size.
-
horizontal
public static void horizontal(GrayU8 input, GrayU8 output, int radius)
Performs a horizontal 1D convolution which computes the mean value of elements inside the kernel.- Parameters:
input- The original image. Not modified.output- Where the resulting image is written to. Modified.radius- Kernel size.
-
vertical
public static void vertical(GrayU8 input, GrayI8 output, int radius)
Performs a vertical 1D convolution which computes the mean value of elements inside the kernel.- Parameters:
input- The original image. Not modified.output- Where the resulting image is written to. Modified.radius- Kernel size.
-
horizontal
public static void horizontal(GrayS16 input, GrayI16 output, int radius)
Performs a horizontal 1D convolution which computes the mean value of elements inside the kernel.- Parameters:
input- The original image. Not modified.output- Where the resulting image is written to. Modified.radius- Kernel size.
-
vertical
public static void vertical(GrayS16 input, GrayI16 output, int radius)
Performs a vertical 1D convolution which computes the mean value of elements inside the kernel.- Parameters:
input- The original image. Not modified.output- Where the resulting image is written to. Modified.radius- Kernel size.
-
-
DataMelt 3.0 © DataMelt by jWork.ORG