![]() |
TurboWavelets.Net
Compact C# Implementation for very fast and flexible wavelet transformations
|
Static Public Member Functions | |
| static void | wavelet53_1d (float[] src, float[] dst, int length) |
| A fast implementation of a 1 dimensional biorthogonal 5/3 wavelet transformation for arbitary lenghts (works for all sizes, not just power of 2) using the lifting scheme. | |
| static void | wavelet53_1d_inverse (float[] src, float[] dst, int length) |
| A fast implementation of a 1 dimensional biorthogonal 5/3 wavelet back-transformation for arbitary lenghts (works for all sizes, not just power of 2) using the lifting scheme. | |
Definition at line 33 of file Biorthogonal53Wavelet1DStatic.cs.
| static void TurboWavelets.Biorthogonal53Wavelet1DStatic.wavelet53_1d | ( | float[] | src, |
| float[] | dst, | ||
| int | length | ||
| ) | [static] |
A fast implementation of a 1 dimensional biorthogonal 5/3 wavelet transformation for arbitary lenghts (works for all sizes, not just power of 2) using the lifting scheme.
| src | The source values which should be transformed |
| dst | The resulting values after the transformation |
Definition at line 43 of file Biorthogonal53Wavelet1DStatic.cs.
| static void TurboWavelets.Biorthogonal53Wavelet1DStatic.wavelet53_1d_inverse | ( | float[] | src, |
| float[] | dst, | ||
| int | length | ||
| ) | [static] |
A fast implementation of a 1 dimensional biorthogonal 5/3 wavelet back-transformation for arbitary lenghts (works for all sizes, not just power of 2) using the lifting scheme.
| src | The source values which should be back-transformed |
| dst | The resulting values after the back-transformation |
Definition at line 102 of file Biorthogonal53Wavelet1DStatic.cs.
1.7.6.1