Package de.gsi.math.spectra.wavelet
Class FastWaveletTransform
- java.lang.Object
-
- de.gsi.math.spectra.wavelet.FastWaveletTransform
-
public final class FastWaveletTransform extends java.lang.ObjectThis is a very fast implementation of the Fast Wavelet Transform. It uses in-place computations for less memory usage. Data length should be a power of 2 a be at least of length 8. Handles boundaries by assuming periodicity. Ideal for image processing or processing large amount of data. Safety is minimal, so be careful!- Author:
- Daniel Lemire
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidinvTransform(double[] v)static voidinvTransform(double[] v, int n)static intmirror(int i, int n)static voidtransform(double[] v)static voidtransform(double[] data, int n)
-