public class ConvolveDownNormalized_JustBorder extends Object
Convolves a 1D kernel in the horizontal or vertical direction while skipping pixels across an image's border. The kernel is re-normalizing the depending upon the amount of overlap it has with the image. These functions will NOT work on kernels which are large than the image.
NOTE: Do not modify. Automatically generated by GenerateConvolveDownNormalized_JustBorder.
| Constructor and Description |
|---|
ConvolveDownNormalized_JustBorder() |
| Modifier and Type | Method and Description |
|---|---|
static void |
convolve(Kernel2D_F32 kernel,
ImageFloat32 input,
ImageFloat32 output,
int skip) |
static void |
convolve(Kernel2D_I32 kernel,
ImageSInt16 input,
ImageInt16 output,
int skip) |
static void |
convolve(Kernel2D_I32 kernel,
ImageUInt8 input,
ImageInt8 output,
int skip) |
static void |
horizontal(Kernel1D_F32 kernel,
ImageFloat32 input,
ImageFloat32 output,
int skip) |
static void |
horizontal(Kernel1D_I32 kernel,
ImageSInt16 input,
ImageInt16 output,
int skip) |
static void |
horizontal(Kernel1D_I32 kernel,
ImageUInt8 input,
ImageInt8 output,
int skip) |
static void |
vertical(Kernel1D_F32 kernel,
ImageFloat32 input,
ImageFloat32 output,
int skip) |
static void |
vertical(Kernel1D_I32 kernel,
ImageSInt16 input,
ImageInt16 output,
int skip) |
static void |
vertical(Kernel1D_I32 kernel,
ImageUInt8 input,
ImageInt8 output,
int skip) |
public static void horizontal(Kernel1D_F32 kernel, ImageFloat32 input, ImageFloat32 output, int skip)
public static void vertical(Kernel1D_F32 kernel, ImageFloat32 input, ImageFloat32 output, int skip)
public static void convolve(Kernel2D_F32 kernel, ImageFloat32 input, ImageFloat32 output, int skip)
public static void horizontal(Kernel1D_I32 kernel, ImageUInt8 input, ImageInt8 output, int skip)
public static void vertical(Kernel1D_I32 kernel, ImageUInt8 input, ImageInt8 output, int skip)
public static void convolve(Kernel2D_I32 kernel, ImageUInt8 input, ImageInt8 output, int skip)
public static void horizontal(Kernel1D_I32 kernel, ImageSInt16 input, ImageInt16 output, int skip)
public static void vertical(Kernel1D_I32 kernel, ImageSInt16 input, ImageInt16 output, int skip)
public static void convolve(Kernel2D_I32 kernel, ImageSInt16 input, ImageInt16 output, int skip)
Copyright © 2013. All Rights Reserved.