public class ConvolveNormalizedSparse
extends java.lang.Object
| Constructor and Description |
|---|
ConvolveNormalizedSparse() |
| Modifier and Type | Method and Description |
|---|---|
static float |
convolve(Kernel1D_F32 horizontal,
Kernel1D_F32 vertical,
GrayF32 input,
int c_x,
int c_y,
float[] storage)
Convolves around the specified point in the horizontal and vertical direction.
|
static int |
convolve(Kernel1D_I32 horizontal,
Kernel1D_I32 vertical,
GrayS16 input,
int c_x,
int c_y,
int[] storage)
Convolves around the specified point in the horizontal and vertical direction.
|
static int |
convolve(Kernel1D_I32 horizontal,
Kernel1D_I32 vertical,
GrayU8 input,
int c_x,
int c_y,
int[] storage)
Convolves around the specified point in the horizontal and vertical direction.
|
public static float convolve(Kernel1D_F32 horizontal, Kernel1D_F32 vertical, GrayF32 input, int c_x, int c_y, float[] storage)
horizontal - Kernel convolved across the point in the horizontal direction.vertical - Kernel convolved across the point in the vertical direction.input - Image being convolved.c_x - The x-coordinate of the point being convolved.c_y - The y-coordinate of the point being convolved.storage - Temporary storage. Needs to be the same size as the kernels being convolved.public static int convolve(Kernel1D_I32 horizontal, Kernel1D_I32 vertical, GrayU8 input, int c_x, int c_y, int[] storage)
horizontal - Kernel convolved across the point in the horizontal direction.vertical - Kernel convolved across the point in the vertical direction.input - Image being convolved.c_x - The x-coordinate of the point being convolved.c_y - The y-coordinate of the point being convolved.storage - Temporary storage. Needs to be the same size as the kernels being convolved.public static int convolve(Kernel1D_I32 horizontal, Kernel1D_I32 vertical, GrayS16 input, int c_x, int c_y, int[] storage)
horizontal - Kernel convolved across the point in the horizontal direction.vertical - Kernel convolved across the point in the vertical direction.input - Image being convolved.c_x - The x-coordinate of the point being convolved.c_y - The y-coordinate of the point being convolved.storage - Temporary storage. Needs to be the same size as the kernels being convolved.