| JSci.maths.wavelet |
|
| Java Source File Name | Type | Comment |
| BasisFunctionLibrary.java | Class | This class is meant to be used for
Fast Wavelet Transform, Matching Pursuit
and related signal processing algorithm.
The basic idea is to automatically build
and compress a library of "basis functions".
Using Morse Coding this class delivers
very fast code without sacrificing
anything. |
| Cascades.java | Class | This class is a standard implementation
of the Cascades algorithm. |
| Cosine.java | Class | This class is used to be able to mix the wavelet
and cosine transforms. |
| DiscreteFunction.java | Class | This class is used to be able to mix the wavelet
and other type of functions such as given signals. |
| DiscreteHilbertSpace.java | Class | This class provides support for basic
operations on MultiscaleFunction. |
| Filter.java | Interface | This interface is used to define wavelet filters.
It is fairly general to accomodate just about any
filter (except complex ones). |
| FWT.java | Class | Abstract class for using very fast, in-place,
implementations of the Fast Wavelet Transform. |
| FWTCoef.java | Class | This class is used to encapsulate wavelet coefficients. |
| FWTCoefMath.java | Class | |
| FWTPacketCoef.java | Class | This class is used to encapsulate wavelet
packets coefficients. |
| IllegalScalingException.java | Class | This exception is used to indicate that the
current chosen multiresolution is not appropriate
because the number of scaling functions is incompatible
(with the multiresolution). |
| MatchingPursuit.java | Class | A Wavelet (and more) matching pursuit class
Uses adaptative Morse coding for better
performance. |
| Multiresolution.java | Class | This class is used to encapsulate
the various wavelet multiresolution
(Dau2, Haar, ...). |
| MultiscaleFunction.java | Class | Abstract encapsulation mostly meant for
wavelet functions (dyadic case). |
| Signal.java | Class | This class use the linear spline as a general model for a signal. |
| Sine.java | Class | This class is used to be able to mix the wavelet
and sine transforms. |
| SparseDiscreteFunction.java | Class | |