public class ImplWaveletTransformBorder
extends java.lang.Object
Performs the wavelet transform just around the image border. Should be called in conjunction
with ImplWaveletTransformInner or similar functions. Must be called after the inner
portion has been computed because the "inner" functions modify the border during the inverse
transform.
For the inverse transform the inner transform must be called before the border is computed. Due to how the inverse is computed some of the output values will be added to border. The values computed in these inverse functions add to that.
DO NOT MODIFY: This class was automatically generated by boofcv.alg.transform.wavelet.impl.GenerateImplWaveletTransformBorder
| Constructor and Description |
|---|
ImplWaveletTransformBorder() |
| Modifier and Type | Method and Description |
|---|---|
static void |
horizontal(BorderIndex1D border,
WlCoef_F32 coefficients,
GrayF32 input,
GrayF32 output) |
static void |
horizontal(BorderIndex1D border,
WlCoef_I32 coefficients,
GrayS32 input,
GrayS32 output) |
static void |
horizontalInverse(BorderIndex1D border,
WlBorderCoef<WlCoef_F32> desc,
GrayF32 input,
GrayF32 output) |
static void |
horizontalInverse(BorderIndex1D border,
WlBorderCoef<WlCoef_I32> desc,
GrayS32 input,
GrayS32 output) |
static void |
vertical(BorderIndex1D border,
WlCoef_F32 coefficients,
GrayF32 input,
GrayF32 output) |
static void |
vertical(BorderIndex1D border,
WlCoef_I32 coefficients,
GrayS32 input,
GrayS32 output) |
static void |
verticalInverse(BorderIndex1D border,
WlBorderCoef<WlCoef_F32> desc,
GrayF32 input,
GrayF32 output) |
static void |
verticalInverse(BorderIndex1D border,
WlBorderCoef<WlCoef_I32> desc,
GrayS32 input,
GrayS32 output) |
public static void horizontal(BorderIndex1D border, WlCoef_F32 coefficients, GrayF32 input, GrayF32 output)
public static void vertical(BorderIndex1D border, WlCoef_F32 coefficients, GrayF32 input, GrayF32 output)
public static void horizontalInverse(BorderIndex1D border, WlBorderCoef<WlCoef_F32> desc, GrayF32 input, GrayF32 output)
public static void verticalInverse(BorderIndex1D border, WlBorderCoef<WlCoef_F32> desc, GrayF32 input, GrayF32 output)
public static void horizontal(BorderIndex1D border, WlCoef_I32 coefficients, GrayS32 input, GrayS32 output)
public static void vertical(BorderIndex1D border, WlCoef_I32 coefficients, GrayS32 input, GrayS32 output)
public static void horizontalInverse(BorderIndex1D border, WlBorderCoef<WlCoef_I32> desc, GrayS32 input, GrayS32 output)
public static void verticalInverse(BorderIndex1D border, WlBorderCoef<WlCoef_I32> desc, GrayS32 input, GrayS32 output)