public class ConvolveNormalized extends Object
| Constructor and Description |
|---|
ConvolveNormalized() |
| Modifier and Type | Method and Description |
|---|---|
static void |
convolve(Kernel2D_F32 kernel,
ImageFloat32 image,
ImageFloat32 dest)
Performs a 2D convolution across the image while re-normalizing the kernel depending on its
overlap with the image.
|
static void |
convolve(Kernel2D_I32 kernel,
ImageSInt16 image,
ImageInt16 dest)
Performs a 2D convolution across the image while re-normalizing the kernel depending on its
overlap with the image.
|
static void |
convolve(Kernel2D_I32 kernel,
ImageUInt8 image,
ImageInt8 dest)
Performs a 2D convolution across the image while re-normalizing the kernel depending on its
overlap with the image.
|
static void |
horizontal(Kernel1D_F32 kernel,
ImageFloat32 image,
ImageFloat32 dest)
Performs a horizontal 1D convolution across the image while re-normalizing the kernel depending on its
overlap with the image.
|
static void |
horizontal(Kernel1D_I32 kernel,
ImageSInt16 image,
ImageInt16 dest)
Performs a horizontal 1D convolution across the image while re-normalizing the kernel depending on its
overlap with the image.
|
static void |
horizontal(Kernel1D_I32 kernel,
ImageSInt32 image,
ImageSInt32 dest)
Performs a horizontal 1D convolution across the image while re-normalizing the kernel depending on its
overlap with the image.
|
static void |
horizontal(Kernel1D_I32 kernel,
ImageUInt8 image,
ImageInt8 dest)
Performs a horizontal 1D convolution across the image while re-normalizing the kernel depending on its
overlap with the image.
|
static void |
vertical(Kernel1D_F32 kernel,
ImageFloat32 image,
ImageFloat32 dest)
Performs a vertical 1D convolution across the image while re-normalizing the kernel depending on its
overlap with the image.
|
static void |
vertical(Kernel1D_I32 kernel,
ImageSInt16 image,
ImageInt16 dest)
Performs a vertical 1D convolution across the image while re-normalizing the kernel depending on its
overlap with the image.
|
static void |
vertical(Kernel1D_I32 kernel,
ImageSInt32 image,
ImageSInt32 dest)
Performs a vertical 1D convolution across the image while re-normalizing the kernel depending on its
overlap with the image.
|
static void |
vertical(Kernel1D_I32 kernel,
ImageUInt8 image,
ImageInt8 dest)
Performs a vertical 1D convolution across the image while re-normalizing the kernel depending on its
overlap with the image.
|
public static void horizontal(Kernel1D_F32 kernel, ImageFloat32 image, ImageFloat32 dest)
image - The original image. Not modified.dest - Where the resulting image is written to. Modified.kernel - The kernel that is being convolved. Not modified.public static void vertical(Kernel1D_F32 kernel, ImageFloat32 image, ImageFloat32 dest)
image - The original image. Not modified.dest - Where the resulting image is written to. Modified.kernel - The kernel that is being convolved. Not modified.public static void convolve(Kernel2D_F32 kernel, ImageFloat32 image, ImageFloat32 dest)
image - The original image. Not modified.dest - Where the resulting image is written to. Modified.kernel - The kernel that is being convolved. Not modified.public static void horizontal(Kernel1D_I32 kernel, ImageUInt8 image, ImageInt8 dest)
image - The original image. Not modified.dest - Where the resulting image is written to. Modified.kernel - The kernel that is being convolved. Not modified.public static void vertical(Kernel1D_I32 kernel, ImageUInt8 image, ImageInt8 dest)
image - The original image. Not modified.dest - Where the resulting image is written to. Modified.kernel - The kernel that is being convolved. Not modified.public static void convolve(Kernel2D_I32 kernel, ImageUInt8 image, ImageInt8 dest)
image - The original image. Not modified.dest - Where the resulting image is written to. Modified.kernel - The kernel that is being convolved. Not modified.public static void horizontal(Kernel1D_I32 kernel, ImageSInt16 image, ImageInt16 dest)
image - The original image. Not modified.dest - Where the resulting image is written to. Modified.kernel - The kernel that is being convolved. Not modified.public static void horizontal(Kernel1D_I32 kernel, ImageSInt32 image, ImageSInt32 dest)
image - The original image. Not modified.dest - Where the resulting image is written to. Modified.kernel - The kernel that is being convolved. Not modified.public static void vertical(Kernel1D_I32 kernel, ImageSInt16 image, ImageInt16 dest)
image - The original image. Not modified.dest - Where the resulting image is written to. Modified.kernel - The kernel that is being convolved. Not modified.public static void vertical(Kernel1D_I32 kernel, ImageSInt32 image, ImageSInt32 dest)
image - The original image. Not modified.dest - Where the resulting image is written to. Modified.kernel - The kernel that is being convolved. Not modified.public static void convolve(Kernel2D_I32 kernel, ImageSInt16 image, ImageInt16 dest)
image - The original image. Not modified.dest - Where the resulting image is written to. Modified.kernel - The kernel that is being convolved. Not modified.Copyright © 2013. All Rights Reserved.