1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
//
// A rust binding for the GSL library by Guillaume Gomez (guillaume1.gomez@gmail.com)
//
/*!
# Wavelet Transforms
This chapter describes functions for performing Discrete Wavelet Transforms (DWTs). The library includes wavelets for real data in both
one and two dimensions.
## Definitions
The continuous wavelet transform and its inverse are defined by the relations,
w(s,\tau) = \int f(t) * \psi^*_{s,\tau}(t) dt
and,
f(t) = \int \int_{-\infty}^\infty w(s, \tau) * \psi_{s,\tau}(t) d\tau ds
where the basis functions \psi_{s,\tau} are obtained by scaling and translation from a single function, referred to as the mother wavelet.
The discrete version of the wavelet transform acts on equally-spaced samples, with fixed scaling and translation steps (s, \tau). The
frequency and time axes are sampled dyadically on scales of 2^j through a level parameter j. The resulting family of functions
{\psi_{j,n}} constitutes an orthonormal basis for square-integrable signals.
The discrete wavelet transform is an O(N) algorithm, and is also referred to as the fast wavelet transform.
## References and Further Reading
The mathematical background to wavelet transforms is covered in the original lectures by Daubechies,
Ingrid Daubechies. Ten Lectures on Wavelets. CBMS-NSF Regional Conference Series in Applied Mathematics (1992), SIAM, ISBN 0898712742.
An easy to read introduction to the subject with an emphasis on the application of the wavelet transform in various branches of science is,
Paul S. Addison. The Illustrated Wavelet Transform Handbook. Institute of Physics Publishing (2002), ISBN 0750306920.
For extensive coverage of signal analysis by wavelets, wavelet packets and local cosine bases see,
S. G. Mallat. A wavelet tour of signal processing (Second edition). Academic Press (1999), ISBN 012466606X.
The concept of multiresolution analysis underlying the wavelet transform is described in,
S. G. Mallat. Multiresolution Approximations and Wavelet Orthonormal Bases of L^2(R). Transactions of the American Mathematical Society,
315(1), 1989, 69–87.
S. G. Mallat. A Theory for Multiresolution Signal Decomposition—The Wavelet Representation. IEEE Transactions on Pattern Analysis and
Machine Intelligence, 11, 1989, 674–693.
The coefficients for the individual wavelet families implemented by the library can be found in the following papers,
I. Daubechies. Orthonormal Bases of Compactly Supported Wavelets. Communications on Pure and Applied Mathematics, 41 (1988) 909–996.
A. Cohen, I. Daubechies, and J.-C. Feauveau. Biorthogonal Bases of Compactly Supported Wavelets. Communications on Pure and Applied
Mathematics, 45 (1992) 485–560.
The PhysioNet archive of physiological datasets can be found online at http://www.physionet.org/ and is described in the following paper,
Goldberger et al. PhysioBank, PhysioToolkit, and PhysioNet: Components of a New Research Resource for Complex Physiologic Signals.
Circulation 101(23):e215-e220 2000.
!*/
use ffi::FFI;
ffi_wrapper!(
Wavelet,
*mut sys::gsl_wavelet,
gsl_wavelet_free,
"The Wavelet structure contains the filter coefficients defining the wavelet and any associated
offset parameters."
);
impl Wavelet {
/// This function allocates and initializes a wavelet object of type T. The parameter k selects the specific member of the wavelet
/// family. A null pointer is returned if insufficient memory is available or if a unsupported member is selected.
#[doc(alias = "gsl_wavelet_alloc")]
pub fn new(t: WaveletType, k: usize) -> Option<Wavelet> {
let tmp = unsafe { sys::gsl_wavelet_alloc(t.unwrap_shared(), k) };
if tmp.is_null() {
None
} else {
Some(Wavelet::wrap(tmp))
}
}
/// This function returns a pointer to the name of the wavelet family for w.
#[doc(alias = "gsl_wavelet_name")]
pub fn name(&self) -> Option<String> {
let tmp = unsafe { sys::gsl_wavelet_name(self.unwrap_shared()) };
if tmp.is_null() {
None
} else {
unsafe {
Some(
String::from_utf8_lossy(::std::ffi::CStr::from_ptr(tmp).to_bytes()).to_string(),
)
}
}
}
}
ffi_wrapper!(WaveletType, *const sys::gsl_wavelet_type,
"The centered forms of the wavelets align the coefficients of the various sub-bands on edges. Thus
the resulting visualization of the coefficients of the wavelet transform in the phase plane is
easier to understand.");
impl WaveletType {
/// This is the Daubechies wavelet family of maximum phase with k/2 vanishing moments. The implemented wavelets are k=4, 6, …, 20, with
/// k even.
#[doc(alias = "gsl_wavelet_daubechies")]
pub fn daubechies() -> WaveletType {
ffi_wrap!(gsl_wavelet_daubechies)
}
/// This is the Daubechies wavelet family of maximum phase with k/2 vanishing moments. The implemented wavelets are k=4, 6, …, 20, with
/// k even.
#[doc(alias = "gsl_wavelet_daubechies_centered")]
pub fn daubechies_centered() -> WaveletType {
ffi_wrap!(gsl_wavelet_daubechies_centered)
}
/// This is the Haar wavelet. The only valid choice of k for the Haar wavelet is k=2.
#[doc(alias = "gsl_wavelet_haar")]
pub fn haar() -> WaveletType {
ffi_wrap!(gsl_wavelet_haar)
}
/// This is the Haar wavelet. The only valid choice of k for the Haar wavelet is k=2.
#[doc(alias = "gsl_wavelet_haar_centered")]
pub fn haar_centered() -> WaveletType {
ffi_wrap!(gsl_wavelet_haar_centered)
}
/// This is the biorthogonal B-spline wavelet family of order (i,j). The implemented values of k = 100*i + j are 103, 105, 202, 204,
/// 206, 208, 301, 303, 305 307, 309.
#[doc(alias = "gsl_wavelet_bspline")]
pub fn bspline() -> WaveletType {
ffi_wrap!(gsl_wavelet_bspline)
}
/// This is the biorthogonal B-spline wavelet family of order (i,j). The implemented values of k = 100*i + j are 103, 105, 202, 204,
/// 206, 208, 301, 303, 305 307, 309.
#[doc(alias = "gsl_wavelet_bspline_centered")]
pub fn bspline_centered() -> WaveletType {
ffi_wrap!(gsl_wavelet_bspline_centered)
}
}
ffi_wrapper!(WaveletWorkspace, *mut sys::gsl_wavelet_workspace, gsl_wavelet_workspace_free,
"The WaveletWorkspace structure contains scratch space of the same size as the input data and is
used to hold intermediate results during the transform.");
impl WaveletWorkspace {
/// This function allocates a workspace for the discrete wavelet transform. To perform a one-dimensional transform on n elements, a
/// workspace of size n must be provided. For two-dimensional transforms of n-by-n matrices it is sufficient to allocate a workspace
/// of size n, since the transform operates on individual rows and columns. A null pointer is returned if insufficient memory is
/// available.
#[doc(alias = "gsl_wavelet_workspace_alloc")]
pub fn new(n: usize) -> Option<WaveletWorkspace> {
let tmp = unsafe { sys::gsl_wavelet_workspace_alloc(n) };
if tmp.is_null() {
None
} else {
Some(WaveletWorkspace::wrap(tmp))
}
}
}