public class DerivativeIntegralImage
extends java.lang.Object
| Constructor and Description |
|---|
DerivativeIntegralImage() |
| Modifier and Type | Method and Description |
|---|---|
static void |
derivXX(ImageFloat32 input,
ImageFloat32 output,
int size) |
static void |
derivXY(ImageFloat32 input,
ImageFloat32 output,
int size) |
static void |
derivYY(ImageFloat32 input,
ImageFloat32 output,
int size) |
static IntegralKernel |
kernelDerivX(int r,
IntegralKernel ret)
Creates a kernel for a symmetric box derivative.
|
static IntegralKernel |
kernelDerivXX(int size,
IntegralKernel ret) |
static IntegralKernel |
kernelDerivXY(int size,
IntegralKernel ret) |
static IntegralKernel |
kernelDerivY(int r,
IntegralKernel ret)
Creates a kernel for a symmetric box derivative.
|
static IntegralKernel |
kernelDerivYY(int size,
IntegralKernel ret) |
static IntegralKernel |
kernelHaarX(int r,
IntegralKernel ret)
Creates a kernel for the Haar wavelet "centered" around the target pixel.
|
static IntegralKernel |
kernelHaarY(int r,
IntegralKernel ret)
Creates a kernel for the Haar wavelet "centered" around the target pixel.
|
public static IntegralKernel kernelDerivX(int r, IntegralKernel ret)
r - Radius of the box. width is 2*r+1public static IntegralKernel kernelDerivY(int r, IntegralKernel ret)
r - Radius of the box. width is 2*r+1public static IntegralKernel kernelHaarX(int r, IntegralKernel ret)
r - Radius of the box. width is 2*rpublic static IntegralKernel kernelHaarY(int r, IntegralKernel ret)
r - Radius of the box. width is 2*rpublic static IntegralKernel kernelDerivXX(int size, IntegralKernel ret)
public static IntegralKernel kernelDerivYY(int size, IntegralKernel ret)
public static IntegralKernel kernelDerivXY(int size, IntegralKernel ret)
public static void derivXX(ImageFloat32 input, ImageFloat32 output, int size)
public static void derivYY(ImageFloat32 input, ImageFloat32 output, int size)
public static void derivXY(ImageFloat32 input, ImageFloat32 output, int size)